summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/token.cpp
blob: 771c19988e1fdc159579e403f0a81a6249ad50df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

// $Id$

// Get our two Test derivatives...
#include "Token_i.h"
#include "Mutex_i.h"

int main(int,char**)
{
        // See what an ACE_Token does for us.
    Token token;
    token.run();

        // And now the ACE_Mutex.
    Mutex mutex;
    mutex.run();
    
    return(0);
}