summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/Token_i.h
blob: 2be3707aae3b782411566e34191c5e4cdadcc9c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

// $Id$

#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<ACE_Token>
{
public:
    Token(void)
            : Test_T<ACE_Token>("Token")
    {}
};

#endif // TOKEN_I_H