blob: 939081f781395d1ca4506a994e99d653bc42a72a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//=============================================================================
/**
* @file Service_Templates.h
*
* $Id$
*
* @author Priyanka Gontla <pgontla@ece.uci.edu>
*/
//=============================================================================
#ifndef ACE_SERVICE_TEMPLATES_H
#define ACE_SERVICE_TEMPLATES_H
#include "ace/pre.h"
#include "ace/Svc_Conf.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Auto_Ptr.h"
#include "ace/Thread_Manager.h"
#include "ace/Stream_Modules.h"
#include "ace/Stream.h"
#include "ace/post.h"
#endif /* ACE_SERVICE_TEMPLATES_H */
|