summaryrefslogtreecommitdiff
path: root/docs/tutorials/018/token.cpp
blob: 995b127014f77a7b03e812b3dec23382b1ba5c19 (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 and ACE_Mutex.
    Mutex mutex;
    mutex.run();
    
    return(0);
}