blob: 1df7c093c2f01666000a5957c7414a7104e30534 [file] [log] [blame]
#ifndef INCLUDE_H
#define INCLUDE_H
class Head {
Head ** array;
Head * operator *= ( int index );
Head * operator * ( int index ){ return array[ index ]; }
Head * operator += ( int index );
operator const short & ();
operator short ();
operator short int ();
};
class DeclsAndDefns{
static int staticField;
int nonStaticField;
void forwardMethod();
void inlineMethod() {}
};
void forwardFunction();
class Direction{
void turn();
};
class Right : public Direction {
void turn() { }
};
#endif