// Token_i.h,v 1.2 1999/02/01 00:19:32 schmidt Exp #ifndef TOKEN_I_H #define TOKEN_I_H #include "Test_T.h" // Go get ace/Token.h so that we know what an ACE_Token is. #include "ace/Token.h" /* Create a very simple derivative of our Test template. All we have to do is provide our mutex choice and a name. */ class Token : public Test_T { public: Token (void): Test_T ("Token") {} }; #endif /* TOKEN_I_H */