forked from lix-project/lix
16 lines
157 B
C++
16 lines
157 B
C++
|
#ifndef __SHARED_H
|
||
|
#define __SHARED_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "util.hh"
|
||
|
|
||
|
|
||
|
void run(Strings args);
|
||
|
|
||
|
|
||
|
extern string programId;
|
||
|
|
||
|
|
||
|
#endif /* !__SHARED_H */
|