/*! \file proto_class.h \brief Definition of the proto class template, used quickly start work */ #ifndef _PROTO_CLASS_H #define _PROTO_CLASS_H #include "stdincl.h" /*class Test;*/ /* forward definition of class Test (without including it here!)*/ class ProtoClass { public: ProtoClass (); ~ProtoClass (); bool doNonSense (int nothing); private: int nonSense; //! doxygen tag here like this - delete this variable if you use this }; #endif /* _PROTO_CLASS_H */