14 lines
211 B
C++
14 lines
211 B
C++
#include "pip.h"
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
class A : public PIObject {
|
|
public:
|
|
void test() {piCout << "test";}
|
|
};
|
|
|
|
int main(int argc, char * argv[]) {
|
|
return 0;
|
|
}
|