summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Time_Service
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/Time_Service')
-rw-r--r--TAO/orbsvcs/Time_Service/Clerk_i.cpp114
-rw-r--r--TAO/orbsvcs/Time_Service/Clerk_i.h16
-rw-r--r--TAO/orbsvcs/Time_Service/Server_i.cpp73
-rw-r--r--TAO/orbsvcs/Time_Service/Server_i.h15
-rw-r--r--TAO/orbsvcs/Time_Service/Time_Service_Clerk.cpp2
-rw-r--r--TAO/orbsvcs/Time_Service/Time_Service_Clerk.vcp2655
-rw-r--r--TAO/orbsvcs/Time_Service/Time_Service_Server.cpp2
-rw-r--r--TAO/orbsvcs/Time_Service/Time_Service_Server.vcp2575
8 files changed, 5342 insertions, 110 deletions
diff --git a/TAO/orbsvcs/Time_Service/Clerk_i.cpp b/TAO/orbsvcs/Time_Service/Clerk_i.cpp
index 49abf595824..f303c31aa34 100644
--- a/TAO/orbsvcs/Time_Service/Clerk_i.cpp
+++ b/TAO/orbsvcs/Time_Service/Clerk_i.cpp
@@ -4,6 +4,7 @@
#include "tao/debug.h"
#include "ace/Read_Buffer.h"
#include "ace/Get_Opt.h"
+#include "ace/Argv_Type_Converter.h"
ACE_RCSID(Time_Service, Clerk_i, "$Id$")
@@ -30,14 +31,14 @@ Clerk_i::~Clerk_i (void)
// naming service.
int
-Clerk_i::read_ior (const char *filename)
+Clerk_i::read_ior (const ACE_TCHAR* filename)
{
// Open the file for reading.
ACE_HANDLE f_handle = ACE_OS::open (filename, 0);
if (f_handle == ACE_INVALID_HANDLE)
ACE_ERROR_RETURN ((LM_ERROR,
- "[CLIENT] Process/Thread Id : (%P/%t) Unable to open %s for writing: %p\n",
+ ACE_LIB_TEXT("[CLIENT] Process/Thread Id : (%P/%t) Unable to open %s for writing: %p\n"),
filename),
-1);
else
@@ -48,7 +49,7 @@ Clerk_i::read_ior (const char *filename)
char *data = ior_buffer.read (EOF,'\n','\n');
if (data == 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "[CLIENT] Process/Thread Id : (%P/%t) Unable to read ior: %p\n"),
+ ACE_LIB_TEXT("[CLIENT] Process/Thread Id : (%P/%t) Unable to read ior: %p\n")),
-1);
int result = 0;
@@ -61,8 +62,8 @@ Clerk_i::read_ior (const char *filename)
str = ACE_OS::strtok (0, "\n"))
{
ACE_DEBUG ((LM_DEBUG,
- "iors -> |%s|\n",
- str));
+ ACE_LIB_TEXT("iors -> |%s|\n"),
+ ACE_TEXT_CHAR_TO_TCHAR(str)));
CORBA::Object_var objref =
this->orb_->string_to_object (str
@@ -73,7 +74,7 @@ Clerk_i::read_ior (const char *filename)
if (CORBA::is_nil (objref.in ()))
{
ACE_ERROR ((LM_ERROR,
- "IOR for the server is Null\n"));
+ ACE_LIB_TEXT("IOR for the server is Null\n")));
result = -1;
break;
}
@@ -88,7 +89,7 @@ Clerk_i::read_ior (const char *filename)
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Exception");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ACE_LIB_TEXT("Exception"));
}
ACE_ENDTRY;
@@ -101,9 +102,10 @@ Clerk_i::read_ior (const char *filename)
// Parse the command-line arguments and set options.
int
-Clerk_i::parse_args (void)
+Clerk_i::parse_args (int argc,
+ ACE_TCHAR* argv[])
{
- ACE_Get_Opt get_opts (this->argc_, this->argv_, "dt:u:f:o:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_LIB_TEXT("dt:u:f:o:"));
int c, result;
@@ -115,13 +117,13 @@ Clerk_i::parse_args (void)
break;
case 't': // time in secs after which the clerk should update time.
- this->timer_value_ = atoi (get_opts.opt_arg ());
+ this->timer_value_ = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'u':
// time in usecs after which the clerk should update time.
// Continues the precision of the -t option.
- this->timer_value_usecs_ = atoi (get_opts.opt_arg ());
+ this->timer_value_usecs_ = ACE_OS::atoi (get_opts.opt_arg ());
break;
case 'f': // read the server IORs from a file.
@@ -129,18 +131,18 @@ Clerk_i::parse_args (void)
if (result < 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "[CLERK] Process/Thread Id : (%P/%t) Unable to read ior from %s : %p\n",
+ ACE_LIB_TEXT("[CLERK] Process/Thread Id : (%P/%t) Unable to read ior from %s : %p\n"),
get_opts.opt_arg ()),
-1);
break;
case 'o': // output the Clerk IOR to a file.
this->ior_output_file_ =
- ACE_OS::fopen (get_opts.opt_arg (), "w");
+ ACE_OS::fopen (get_opts.opt_arg (), ACE_LIB_TEXT("w"));
if (this->ior_output_file_ == 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t)Unable to open %s for writing: %\n",
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t)Unable to open %s for writing: %\n"),
get_opts.opt_arg ()), -1);
break;
@@ -148,15 +150,15 @@ Clerk_i::parse_args (void)
/* FALLTHRU */
default:
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t)"
- "usage: %s"
- " [-d]"
- " [-t] <Timer value inn Secs>"
- " [-u] <Timer value in uSecs>"
- " [-f] <ior_input_file>"
- " [-o] <ior_output_file>"
- "\n",
- argv_ [0]),
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t)")
+ ACE_LIB_TEXT("usage: %s")
+ ACE_LIB_TEXT(" [-d]")
+ ACE_LIB_TEXT(" [-t] <Timer value inn Secs>")
+ ACE_LIB_TEXT(" [-u] <Timer value in uSecs>")
+ ACE_LIB_TEXT(" [-f] <ior_input_file>")
+ ACE_LIB_TEXT(" [-o] <ior_output_file>")
+ ACE_LIB_TEXT("\n"),
+ argv[0]),
1);
}
@@ -199,8 +201,8 @@ Clerk_i::get_first_IOR (void)
if (CORBA::is_nil (server_context.in ()))
ACE_DEBUG ((LM_DEBUG,
- "TAO_Time_Service_Clerk::get_server_IORs:"
- "No Active Servers in the Network\n"));
+ ACE_LIB_TEXT("TAO_Time_Service_Clerk::get_server_IORs:")
+ ACE_LIB_TEXT("No Active Servers in the Network\n")));
// Get the first element and an iterator over the other
// elements.
@@ -223,8 +225,8 @@ Clerk_i::get_first_IOR (void)
if (CORBA::is_nil (obj.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
- "[CLERK] Process/Thread Id : (%P/%t) Unable to Resolve "
- "Server Reference\n"),
+ ACE_LIB_TEXT("[CLERK] Process/Thread Id : (%P/%t) Unable to Resolve ")
+ ACE_LIB_TEXT("Server Reference\n")),
-1);
// Insert the first server IOR into the unbounded set of server
@@ -236,12 +238,12 @@ Clerk_i::get_first_IOR (void)
if (next_n_IORs (iter,
server_context) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "[CLERK] Process/Thread Id : (%P/%t) Unable to get next N IORs "),
+ ACE_LIB_TEXT("[CLERK] Process/Thread Id : (%P/%t) Unable to get next N IORs ")),
-1);;
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Exception");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ACE_LIB_TEXT("Exception"));
return -1;
}
ACE_ENDTRY;
@@ -270,8 +272,8 @@ Clerk_i::next_n_IORs (CosNaming::BindingIterator_var iter,
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
- "Getting IOR of the server: %s\n\n",
- binding->binding_name[0].id.in ()));
+ ACE_LIB_TEXT("Getting IOR of the server: %s\n\n"),
+ ACE_TEXT_CHAR_TO_TCHAR(binding->binding_name[0].id.in ())));
CosNaming::Name server_name;
server_name.length (1);
@@ -298,7 +300,7 @@ Clerk_i::next_n_IORs (CosNaming::BindingIterator_var iter,
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Unexpected exception in next_n_IORs\n");
+ ACE_LIB_TEXT("Unexpected exception in next_n_IORs\n"));
return -1;
}
ACE_ENDTRY;
@@ -309,15 +311,16 @@ Clerk_i::next_n_IORs (CosNaming::BindingIterator_var iter,
// Initialise the Naming Service.
int
-Clerk_i::init_naming_service (void)
+Clerk_i::init_naming_service (int argc,
+ char* argv[])
{
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
// Initialize the POA.
- this->orb_manager_.init_child_poa (this->argc_,
- this->argv_,
+ this->orb_manager_.init_child_poa (argc,
+ argv,
"my_child_poa"
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
@@ -337,7 +340,7 @@ Clerk_i::init_naming_service (void)
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Exception");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ACE_LIB_TEXT("Exception"));
return -1;
}
ACE_ENDTRY;
@@ -374,8 +377,8 @@ Clerk_i::create_clerk (void)
// Print the clerk IOR on the console.
ACE_DEBUG ((LM_DEBUG,
- "[SERVER] Process/Thread Id : (%P/%t) The Time Service CLERK IOR is: <%s>\n",
- objref_clerk.in ()));
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t) The Time Service CLERK IOR is: <%s>\n"),
+ ACE_TEXT_CHAR_TO_TCHAR(objref_clerk.in ())));
// Print the Time Service clerk IOR to a file.
if (this->ior_output_file_)
@@ -391,7 +394,7 @@ Clerk_i::create_clerk (void)
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Exception");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ACE_LIB_TEXT("Exception"));
return -1;
}
ACE_ENDTRY;
@@ -474,7 +477,7 @@ Clerk_i::register_clerk (void)
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "(%P|%t) Exception from init_naming_service ()\n");
+ ACE_LIB_TEXT("(%P|%t) Exception from init_naming_service ()\n"));
}
ACE_ENDTRY;
@@ -485,13 +488,13 @@ Clerk_i::register_clerk (void)
int
Clerk_i::init (int argc,
- char *argv[]
+ ACE_TCHAR *argv[]
ACE_ENV_ARG_DECL)
{
ACE_TRY
{
- this->argc_ = argc;
- this->argv_ = argv;
+ // Make a copy of command line parameter.
+ ACE_Argv_Type_Converter command(argc, argv);
// Set the size of the Server IOR Array.
this->server_.max_size (10);
@@ -501,19 +504,19 @@ Clerk_i::init (int argc,
// create a child POA under the root POA.
- this->orb_manager_.init (argc,
- argv
+ this->orb_manager_.init (command.get_argc(),
+ command.get_ASCII_argv()
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
- if (this->orb_manager_.init_child_poa (argc,
- argv,
+ if (this->orb_manager_.init_child_poa (command.get_argc(),
+ command.get_ASCII_argv(),
"child_poa"
ACE_ENV_ARG_PARAMETER) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "init_child_poa"),
+ ACE_LIB_TEXT("%p\n"),
+ ACE_LIB_TEXT("init_child_poa")),
-1);
ACE_TRY_CHECK;
@@ -521,7 +524,7 @@ Clerk_i::init (int argc,
this->orb_ = this->orb_manager_.orb ();
// Parse commandline arguments.
- if (this->parse_args () !=0 )
+ if (this->parse_args (command.get_argc(), command.get_TCHAR_argv()) !=0 )
return -1;
// If IOR file has not been specified then try the Naming
@@ -530,10 +533,11 @@ Clerk_i::init (int argc,
if (!this->ior_fp_)
{
ACE_DEBUG ((LM_DEBUG,
- "IOR file not specified. Using the Naming Service instead\n"));
+ ACE_LIB_TEXT("IOR file not specified. Using the Naming Service instead\n")));
// Initialize the Naming Service.
- if (this->init_naming_service () !=0 )
+ if (this->init_naming_service (command.get_argc(),
+ command.get_ASCII_argv()) !=0 )
return -1;
// Get a reference to the Server Naming context and the
@@ -561,7 +565,7 @@ Clerk_i::init (int argc,
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "(%P|%t) Exception in Clerk_i::init ()\n");
+ ACE_LIB_TEXT("(%P|%t) Exception in Clerk_i::init ()\n"));
return -1;
}
ACE_ENDTRY;
@@ -580,13 +584,13 @@ Clerk_i::run (ACE_ENV_SINGLE_ARG_DECL)
if (r == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t) Clerk_i::run"),
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t) Clerk_i::run")),
-1);
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "(%P|%t) Exception in Clerk_i::run ()\n");
+ ACE_LIB_TEXT("(%P|%t) Exception in Clerk_i::run ()\n"));
}
ACE_ENDTRY;
diff --git a/TAO/orbsvcs/Time_Service/Clerk_i.h b/TAO/orbsvcs/Time_Service/Clerk_i.h
index 50a7e0557da..3bc63984540 100644
--- a/TAO/orbsvcs/Time_Service/Clerk_i.h
+++ b/TAO/orbsvcs/Time_Service/Clerk_i.h
@@ -51,7 +51,7 @@ public:
// Set of available Time servers.
int init (int argc,
- char *argv[]
+ ACE_TCHAR *argv[]
ACE_ENV_ARG_DECL);
// Initialize the Clerk state - parsing arguments and waiting.
@@ -64,11 +64,12 @@ private:
private:
- int read_ior (const char *filename);
+ int read_ior (const ACE_TCHAR* filename);
// Read the server IORs from a file instead of using a naming
// service.
- int parse_args (void);
+ int parse_args (int argc,
+ ACE_TCHAR* argv[]);
// Parses the commandline arguments.
TAO_ORB_Manager orb_manager_;
@@ -77,7 +78,8 @@ private:
FILE *ior_output_file_;
// File where the IOR of the Clerk object is stored.
- int init_naming_service (void);
+ int init_naming_service (int argc,
+ char* argv[]);
// Initialises the name server and registers the <TimeService> Clerk
// object with it.
@@ -136,12 +138,6 @@ private:
int ior_fp_;
// Read IORs from a file.
-
- int argc_;
- // Number of command line arguments.
-
- char **argv_;
- // The command line arguments.
};
#endif /* CLERK_I_H */
diff --git a/TAO/orbsvcs/Time_Service/Server_i.cpp b/TAO/orbsvcs/Time_Service/Server_i.cpp
index c085b065d48..6a5e3ddcced 100644
--- a/TAO/orbsvcs/Time_Service/Server_i.cpp
+++ b/TAO/orbsvcs/Time_Service/Server_i.cpp
@@ -3,6 +3,7 @@
#include "Server_i.h"
#include "tao/debug.h"
#include "ace/Get_Opt.h"
+#include "ace/Argv_Type_Converter.h"
ACE_RCSID(Time_Service, Server_i, "$Id$")
@@ -23,9 +24,10 @@ Server_i::~Server_i (void)
// Parse the command-line arguments and set options.
int
-Server_i::parse_args (void)
+Server_i::parse_args (int argc,
+ ACE_TCHAR* argv[])
{
- ACE_Get_Opt get_opts (this->argc_, this->argv_, "do:");
+ ACE_Get_Opt get_opts (argc, argv, ACE_LIB_TEXT("do:"));
int c;
while ((c = get_opts ()) != -1)
@@ -36,22 +38,22 @@ Server_i::parse_args (void)
break;
case 'o': // output the IOR to a file.
this->ior_output_file_ =
- ACE_OS::fopen (get_opts.opt_arg (), "a");
+ ACE_OS::fopen (get_opts.opt_arg (), ACE_LIB_TEXT("a"));
if (this->ior_output_file_ == 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t)Unable to open %s for writing: %p\n",
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t)Unable to open %s for writing: %p\n"),
get_opts.opt_arg ()), -1);
break;
case '?': // display help for use of the server.
default:
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t)"
- "usage: %s"
- " [-d]"
- " [-o] <ior_output_file>"
- "\n",
- argv_ [0]),
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t)")
+ ACE_LIB_TEXT("usage: %s")
+ ACE_LIB_TEXT(" [-d]")
+ ACE_LIB_TEXT(" [-o] <ior_output_file>")
+ ACE_LIB_TEXT("\n"),
+ argv[0]),
1);
}
@@ -63,13 +65,15 @@ Server_i::parse_args (void)
// with it.
int
-Server_i::init_naming_service (ACE_ENV_SINGLE_ARG_DECL)
+Server_i::init_naming_service (int argc,
+ char* argv[]
+ ACE_ENV_SINGLE_ARG_DECL)
{
ACE_TRY
{
// Initialize the POA.
- this->orb_manager_.init_child_poa (this->argc_,
- this->argv_,
+ this->orb_manager_.init_child_poa (argc,
+ argv,
"child_poa"
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
@@ -90,7 +94,7 @@ Server_i::init_naming_service (ACE_ENV_SINGLE_ARG_DECL)
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "(%P|%t) Exception from init_naming_service ()\n");
+ ACE_LIB_TEXT("(%P|%t) Exception from init_naming_service ()\n"));
return -1;
}
@@ -145,9 +149,9 @@ Server_i::create_server (void)
// Print the server IOR on the console.
ACE_DEBUG ((LM_DEBUG,
- "[SERVER] Process/Thread Id : (%P/%t) The Time Service "
- "SERVER IOR: <%s>\n",
- objref_server.in ()));
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t) The Time Service ")
+ ACE_LIB_TEXT("SERVER IOR: <%s>\n"),
+ ACE_TEXT_CHAR_TO_TCHAR(objref_server.in ())));
// Print the IOR to a file.
@@ -163,7 +167,7 @@ Server_i::create_server (void)
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Exception in Server_i::create_server ()");
+ ACE_LIB_TEXT("Exception in Server_i::create_server ()"));
return -1;
}
ACE_ENDTRY;
@@ -246,13 +250,13 @@ Server_i::register_server (void)
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
- "Binding ServerContext -> %s\n",
- server_name[1].id.in ()));
+ ACE_LIB_TEXT("Binding ServerContext -> %s\n"),
+ ACE_TEXT_CHAR_TO_TCHAR(server_name[1].id.in ())));
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "(%P|%t) Exception from Register Server ()\n");
+ ACE_LIB_TEXT("(%P|%t) Exception from Register Server ()\n"));
return -1;
}
ACE_ENDTRY;
@@ -266,33 +270,32 @@ Server_i::register_server (void)
int
Server_i::init (int argc,
- char *argv[]
+ ACE_TCHAR *argv[]
ACE_ENV_ARG_DECL)
{
- this->argc_ = argc;
- this->argv_ = argv;
-
ACE_TRY
{
+ // Make a copy of command line parameter.
+ ACE_Argv_Type_Converter command(argc, argv);
// Call the init of <TAO_ORB_Manager> to initialize the ORB and
// create a child POA under the root POA.
- if (this->orb_manager_.init_child_poa (argc,
- argv,
+ if (this->orb_manager_.init_child_poa (command.get_argc(),
+ command.get_ASCII_argv(),
"time_server"
ACE_ENV_ARG_PARAMETER) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "init_child_poa"),
- -1);
+ ACE_LIB_TEXT("%p\n"),
+ ACE_LIB_TEXT("init_child_poa")),
+ -1);
ACE_TRY_CHECK;
// Activate the POA Manager.
this->orb_manager_.activate_poa_manager (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
- int result = this->parse_args ();
+ int result = this->parse_args (command.get_argc(), command.get_TCHAR_argv());
if (result != 0)
return result;
@@ -301,7 +304,9 @@ Server_i::init (int argc,
this->orb_ = this->orb_manager_.orb ();
// Use the Naming Service Register the above implementation with the Naming Service.
- this->init_naming_service (ACE_ENV_SINGLE_ARG_PARAMETER);
+ this->init_naming_service (command.get_argc(),
+ command.get_ASCII_argv()
+ ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
@@ -314,7 +319,7 @@ Server_i::init (int argc,
}
ACE_CATCHANY
{
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, "Exception:");
+ ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION, ACE_LIB_TEXT("Exception:"));
return -1;
}
ACE_ENDTRY;
@@ -333,7 +338,7 @@ Server_i::run (ACE_ENV_SINGLE_ARG_DECL)
if (retval == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "[SERVER] Process/Thread Id : (%P/%t) Server_i::run"),
+ ACE_LIB_TEXT("[SERVER] Process/Thread Id : (%P/%t) Server_i::run")),
-1);
return 0;
}
diff --git a/TAO/orbsvcs/Time_Service/Server_i.h b/TAO/orbsvcs/Time_Service/Server_i.h
index 8241f63960a..db72968ac5c 100644
--- a/TAO/orbsvcs/Time_Service/Server_i.h
+++ b/TAO/orbsvcs/Time_Service/Server_i.h
@@ -41,14 +41,16 @@ public:
// Destructor.
int init (int argc,
- char *argv[]
+ ACE_TCHAR *argv[]
ACE_ENV_ARG_DECL);
// Initialize the Server state.
int run (ACE_ENV_SINGLE_ARG_DECL);
// Run the orb.
- int init_naming_service (ACE_ENV_SINGLE_ARG_DECL);
+ int init_naming_service (int argc,
+ char* argv[]
+ ACE_ENV_SINGLE_ARG_DECL);
// Initialises the name server.
int create_server (void);
@@ -57,7 +59,8 @@ public:
int register_server (void);
// Register the time server object with the Naming Service.
- int parse_args (void);
+ int parse_args (int argc,
+ ACE_TCHAR* argv[]);
// Parse the commandline arguments.
int if_first_server (CosNaming::Name &server_context_name);
@@ -87,12 +90,6 @@ private:
CosNaming::NamingContext_var time_service_server_context_;
// Naming context for the Naming Service.
-
- int argc_;
- // Number of command line arguments.
-
- char **argv_;
- // The command line arguments.
};
#endif /* SERVER_I_H */
diff --git a/TAO/orbsvcs/Time_Service/Time_Service_Clerk.cpp b/TAO/orbsvcs/Time_Service/Time_Service_Clerk.cpp
index 62d14c1746a..82b5acf84ec 100644
--- a/TAO/orbsvcs/Time_Service/Time_Service_Clerk.cpp
+++ b/TAO/orbsvcs/Time_Service/Time_Service_Clerk.cpp
@@ -7,7 +7,7 @@ ACE_RCSID(TimeService, Time_Service_Clerk, "$Id$")
// This is the main driver program for the Time Service clerk.
int
-main (int argc, char *argv[])
+ACE_TMAIN (int argc, ACE_TCHAR* argv[])
{
Clerk_i clerk;
diff --git a/TAO/orbsvcs/Time_Service/Time_Service_Clerk.vcp b/TAO/orbsvcs/Time_Service/Time_Service_Clerk.vcp
new file mode 100644
index 00000000000..2c8f83e1813
--- /dev/null
+++ b/TAO/orbsvcs/Time_Service/Time_Service_Clerk.vcp
@@ -0,0 +1,2655 @@
+# Microsoft eMbedded Visual Tools Project File - Name="Time_Service_Clerk" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+
+CFG=Time_Service_Clerk - Win32 (WCE ARM) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "Time_Service_Clerk.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "Time_Service_Clerk.vcn" CFG="Time_Service_Clerk - Win32 (WCE ARM) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "Time_Service_Clerk - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Time_Service_Clerk - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Time_Service_Clerk - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "Time_Service_Clerk - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "../../LIB/Release/ARM"
+# PROP Intermediate_Dir "Release/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib ace.lib ace_os.lib TAO.lib TAO_PortableServer.lib TAO_CosNaming.lib TAO_CosTime.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Release/ARM/Time_Service_Clerk.exe" /libpath:"../../LIB/Release/ARM" /libpath:"../../../LIB/Release/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/ARM"
+# PROP Intermediate_Dir "Debug/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib aced.lib ace_osd.lib TAOd.lib TAO_PortableServerd.lib TAO_CosNamingd.lib TAO_CosTimed.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Debug/ARM/Time_Service_Clerk.exe" /libpath:"../../LIB/Debug/ARM" /libpath:"../../../LIB/Debug/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/X86EM"
+# PROP Intermediate_Dir "Debug/X86EM"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib aced.lib ace_osd.lib TAOd.lib TAO_PortableServerd.lib TAO_CosNamingd.lib TAO_CosTimed.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"../../../bin/Debug/X86EM/Time_Service_Clerk.exe" /libpath:"../../LIB/Debug/X86EM" /libpath:"../../../LIB/Debug/X86EM" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "Time_Service_Clerk - Win32 (WCE ARM) Release"
+# Name "Time_Service_Clerk - Win32 (WCE ARM) Debug"
+# Name "Time_Service_Clerk - Win32 (WCE x86) Release"
+# Name "Time_Service_Clerk - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\Clerk_i.cpp
+
+!IF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Release"
+
+DEP_CPP_CLERK=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_CLERK=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\Read_Buffer.h"\
+ ".\ce\Read_Buffer.i"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Debug"
+
+DEP_CPP_CLERK=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_CLERK=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\Read_Buffer.h"\
+ ".\ce\Read_Buffer.i"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Release"
+
+DEP_CPP_CLERK=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_CLERK=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\Read_Buffer.h"\
+ ".\ce\Read_Buffer.i"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Debug"
+
+DEP_CPP_CLERK=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_CLERK=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\Read_Buffer.h"\
+ ".\ce\Read_Buffer.i"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Time_Service_Clerk.cpp
+
+!IF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Release"
+
+DEP_CPP_TIME_=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE ARM) Debug"
+
+DEP_CPP_TIME_=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Release"
+
+DEP_CPP_TIME_=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Clerk - Win32 (WCE x86) Debug"
+
+DEP_CPP_TIME_=\
+ ".\Clerk_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\any.h"\
+ "..\tao\cdr.h"\
+ "..\tao\CORBA_String.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseC.h"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Array_Base.cpp"\
+ ".\ce\Array_Base.h"\
+ ".\ce\Array_Base.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\Containers.h"\
+ ".\ce\Containers.i"\
+ ".\ce\Containers_T.cpp"\
+ ".\ce\Containers_T.h"\
+ ".\ce\Containers_T.i"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.h"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\svc_utils_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\Time\Timer_Helper.h"\
+ ".\orbsvcs\TimeBaseC.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Clerk.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Clerk_i.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
diff --git a/TAO/orbsvcs/Time_Service/Time_Service_Server.cpp b/TAO/orbsvcs/Time_Service/Time_Service_Server.cpp
index f61746d627e..3aa7829b917 100644
--- a/TAO/orbsvcs/Time_Service/Time_Service_Server.cpp
+++ b/TAO/orbsvcs/Time_Service/Time_Service_Server.cpp
@@ -7,7 +7,7 @@ ACE_RCSID(TimeService, Time_Service_Server, "$Id$")
// This is the main driver program for the Time Service server.
int
-main (int argc, char *argv[])
+ACE_TMAIN (int argc, ACE_TCHAR* argv[])
{
Server_i server;
diff --git a/TAO/orbsvcs/Time_Service/Time_Service_Server.vcp b/TAO/orbsvcs/Time_Service/Time_Service_Server.vcp
new file mode 100644
index 00000000000..418d1feaeb7
--- /dev/null
+++ b/TAO/orbsvcs/Time_Service/Time_Service_Server.vcp
@@ -0,0 +1,2575 @@
+# Microsoft eMbedded Visual Tools Project File - Name="Time_Service_Server" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+
+CFG=Time_Service_Server - Win32 (WCE ARM) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "Time_Service_Server.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "Time_Service_Server.vcn" CFG="Time_Service_Server - Win32 (WCE ARM) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "Time_Service_Server - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Time_Service_Server - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Time_Service_Server - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "Time_Service_Server - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "../../LIB/Release/ARM"
+# PROP Intermediate_Dir "Release/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib ace.lib ace_os.lib TAO.lib TAO_PortableServer.lib TAO_CosNaming.lib TAO_CosTime.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Release/ARM/Time_Service_Server.exe" /libpath:"../../LIB/Release/ARM" /libpath:"../../../LIB/Release/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/ARM"
+# PROP Intermediate_Dir "Debug/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib aced.lib ace_osd.lib TAOd.lib TAO_PortableServerd.lib TAO_CosNamingd.lib TAO_CosTimed.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Debug/ARM/Time_Service_Server.exe" /libpath:"../../LIB/Debug/ARM" /libpath:"../../../LIB/Debug/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "X86Rel"
+# PROP Intermediate_Dir "X86Rel"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/X86EM"
+# PROP Intermediate_Dir "Debug/X86EM"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /FR /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib aced.lib ace_osd.lib TAOd.lib TAO_PortableServerd.lib TAO_CosNamingd.lib TAO_CosTimed.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"../../../bin/Debug/X86EM/Time_Service_Server.exe" /libpath:"../../LIB/Debug/X86EM" /libpath:"../../../LIB/Debug/X86EM" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "Time_Service_Server - Win32 (WCE ARM) Release"
+# Name "Time_Service_Server - Win32 (WCE ARM) Debug"
+# Name "Time_Service_Server - Win32 (WCE x86) Release"
+# Name "Time_Service_Server - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\Server_i.cpp
+
+!IF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Release"
+
+DEP_CPP_SERVE=\
+ ".\Server_i.h"\
+
+NODEP_CPP_SERVE=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Debug"
+
+DEP_CPP_SERVE=\
+ ".\Server_i.h"\
+
+NODEP_CPP_SERVE=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Release"
+
+DEP_CPP_SERVE=\
+ ".\Server_i.h"\
+
+NODEP_CPP_SERVE=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Debug"
+
+DEP_CPP_SERVE=\
+ ".\Server_i.h"\
+
+NODEP_CPP_SERVE=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Argv_Type_Converter.h"\
+ ".\ce\Argv_Type_Converter.inl"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Time_Service_Server.cpp
+
+!IF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Release"
+
+DEP_CPP_TIME_=\
+ ".\Server_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE ARM) Debug"
+
+DEP_CPP_TIME_=\
+ ".\Server_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Release"
+
+DEP_CPP_TIME_=\
+ ".\Server_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ELSEIF "$(CFG)" == "Time_Service_Server - Win32 (WCE x86) Debug"
+
+DEP_CPP_TIME_=\
+ ".\Server_i.h"\
+
+NODEP_CPP_TIME_=\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\Environment.h"\
+ "..\tao\Exception.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orb.h"\
+ "..\tao\PolicyC.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\sequence.h"\
+ "..\tao\Services.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\TimeBaseS.i"\
+ "..\tao\TimeBaseS_T.cpp"\
+ "..\tao\TimeBaseS_T.h"\
+ "..\tao\TimeBaseS_T.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\any.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.h"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\ORB.i"\
+ ".\ao\orbconf.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Export.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\TimeBaseS.h"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\orbsvcs\CosNamingC.i"\
+ ".\orbsvcs\CosNamingS.i"\
+ ".\orbsvcs\CosNamingS_T.cpp"\
+ ".\orbsvcs\CosNamingS_T.h"\
+ ".\orbsvcs\CosNamingS_T.i"\
+ ".\orbsvcs\Naming\Naming_Context_Interface.h"\
+ ".\orbsvcs\Naming\naming_export.h"\
+ ".\orbsvcs\Time\time_export.h"\
+ ".\orbsvcs\TimeBaseC.i"\
+ ".\orbsvcs\TimeBaseS.h"\
+ ".\orbsvcs\TimeBaseS.i"\
+ ".\orbsvcs\TimeBaseS_T.cpp"\
+ ".\orbsvcs\TimeBaseS_T.h"\
+ ".\orbsvcs\TimeBaseS_T.i"\
+ ".\orbsvcs\TimeServiceC.h"\
+ ".\orbsvcs\TimeServiceC.i"\
+ ".\orbsvcs\TimeServiceS.i"\
+ ".\orbsvcs\TimeServiceS_T.cpp"\
+ ".\orbsvcs\TimeServiceS_T.h"\
+ ".\orbsvcs\TimeServiceS_T.i"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+ ".\rbsvcs\Time\TAO_Time_Service_Server.h"\
+ ".\rbsvcs\TimeBaseC.h"\
+ ".\rbsvcs\TimeServiceS.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Server_i.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project