summaryrefslogtreecommitdiff
path: root/TAO/examples
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1999-05-31 17:00:19 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1999-05-31 17:00:19 +0000
commitbaf905434df85614ba8f5693ee43b4ed757f53cd (patch)
treeaeb4ee49b7ab6b33bb30258f922ff304bcbebf11 /TAO/examples
parentb7e7108934ff6d3ee2751bc751af772c7ebba660 (diff)
downloadATCD-baf905434df85614ba8f5693ee43b4ed757f53cd.tar.gz
.
Diffstat (limited to 'TAO/examples')
-rw-r--r--TAO/examples/Simple/Simple_util.cpp45
-rw-r--r--TAO/examples/Simple/Simple_util.h8
-rw-r--r--TAO/examples/Simple/time-date/Time_Date.cpp161
-rw-r--r--TAO/examples/Simple/time-date/Time_Date.idl3
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_Client_i.cpp22
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_Client_i.h10
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_i.cpp28
-rw-r--r--TAO/examples/Simple/time-date/Time_Date_i.h14
-rw-r--r--TAO/examples/Simple/time-date/client.cpp2
-rw-r--r--TAO/examples/Simple/time-date/client.dsp1085
-rwxr-xr-xTAO/examples/Simple/time-date/run_test.pl6
-rw-r--r--TAO/examples/Simple/time-date/server.cpp8
-rw-r--r--TAO/examples/Simple/time-date/server.dsp1106
-rw-r--r--TAO/examples/Simple/time-date/svc.conf3
14 files changed, 262 insertions, 2239 deletions
diff --git a/TAO/examples/Simple/Simple_util.cpp b/TAO/examples/Simple/Simple_util.cpp
index 4dcc6bafa13..4cffb2d21cc 100644
--- a/TAO/examples/Simple/Simple_util.cpp
+++ b/TAO/examples/Simple/Simple_util.cpp
@@ -1,4 +1,5 @@
//$Id$
+
#ifndef SIMPLE_UTIL_C
#define SIMPLE_UTIL_C
# include "Simple_util.h"
@@ -241,8 +242,8 @@ Server<Servant>::register_name (void)
// Constructor.
-template <class InterfaceObj, class Var>
-Client<InterfaceObj, Var>::Client (void)
+template <class INTERFACE_OBJECT, class Var>
+Client<INTERFACE_OBJECT, Var>::Client (void)
: ior_ (0)
{
//no-op
@@ -250,8 +251,8 @@ Client<InterfaceObj, Var>::Client (void)
// Reads the Server ior from a file
-template <class InterfaceObj, class Var> int
-Client<InterfaceObj, Var>::read_ior (char *filename)
+template <class INTERFACE_OBJECT, class Var> int
+Client<INTERFACE_OBJECT, Var>::read_ior (char *filename)
{
// Open the file for reading.
ACE_HANDLE f_handle = ACE_OS::open (filename, 0);
@@ -280,8 +281,8 @@ Client<InterfaceObj, Var>::read_ior (char *filename)
// Parses the command line arguments and returns an error status.
-template <class InterfaceObj, class Var> int
-Client<InterfaceObj, Var>::parse_args (void)
+template <class INTERFACE_OBJECT, class Var> int
+Client<INTERFACE_OBJECT, Var>::parse_args (void)
{
ACE_Get_Opt get_opts (argc_, argv_, "df:nk:x");
int c = 0;
@@ -316,14 +317,14 @@ Client<InterfaceObj, Var>::parse_args (void)
return 0;
}
-template <class InterfaceObj, class Var>
-Client<InterfaceObj, Var>::~Client (void)
+template <class INTERFACE_OBJECT, class Var>
+Client<INTERFACE_OBJECT, Var>::~Client (void)
{
ACE_OS::free (this->ior_);
}
-template <class InterfaceObj, class Var> int
-Client<InterfaceObj, Var>::init (const char *name,
+template <class INTERFACE_OBJECT, class Var> int
+Client<INTERFACE_OBJECT, Var>::init (const char *name,
int argc,
char **argv)
{
@@ -358,7 +359,7 @@ Client<InterfaceObj, Var>::init (const char *name,
"invalid ior <%s>\n",
this->ior_),
-1);
- this->server_ = InterfaceObj::_narrow (server_object.in (),
+ this->server_ = INTERFACE_OBJECT::_narrow (server_object.in (),
ACE_TRY_ENV);
ACE_TRY_CHECK;
}
@@ -392,14 +393,14 @@ Client<InterfaceObj, Var>::init (const char *name,
}
-template <class InterfaceObj, class Var> int
-Client<InterfaceObj, Var>::obtain_initial_references (CORBA::Environment &ACE_TRY_ENV)
+template <class INTERFACE_OBJECT, class Var> int
+Client<INTERFACE_OBJECT, Var>::obtain_initial_references (CORBA::Environment &ACE_TRY_ENV)
{
ACE_TRY
{
// Initialize the naming services.
- if (namingClient.init (orb_.in ()) != 0)
+ if (naming_client.init (orb_.in ()) != 0)
ACE_ERROR_RETURN ((LM_ERROR,
"[CLIENT] Process/Thread Id : (%P/%t) Unable to initialize "
"the TAO_Naming_Client. \n"),
@@ -411,11 +412,11 @@ Client<InterfaceObj, Var>::obtain_initial_references (CORBA::Environment &ACE_TR
CORBA::string_dup (this->name_);
CORBA::Object_var obj =
- namingClient->resolve (server_name,
- ACE_TRY_ENV);
+ naming_client->resolve (server_name,
+ ACE_TRY_ENV);
ACE_TRY_CHECK;
- this->server_ = InterfaceObj::_narrow (obj.in (),
+ this->server_ = INTERFACE_OBJECT::_narrow (obj.in (),
ACE_TRY_ENV);
ACE_TRY_CHECK;
}
@@ -429,18 +430,18 @@ Client<InterfaceObj, Var>::obtain_initial_references (CORBA::Environment &ACE_TR
return 0;
}
-template <class InterfaceObj, class Var> int
-Client<InterfaceObj, Var>::shutdown (void )
+template <class INTERFACE_OBJECT, class Var> int
+Client<INTERFACE_OBJECT, Var>::shutdown (void)
{
// Returns the shutdwon flag
return shutdown_;
}
-template <class InterfaceObj, class Var> void
-Client<InterfaceObj, Var>::shutdown (int flag)
+template <class INTERFACE_OBJECT, class Var> void
+Client<INTERFACE_OBJECT, Var>::shutdown (int flag)
{
// Fills the flag
shutdown_ = flag;
}
-#endif
+#endif /* SIMPLE_UTIL_C */
diff --git a/TAO/examples/Simple/Simple_util.h b/TAO/examples/Simple/Simple_util.h
index 3be6bfb2c25..6fee68b6246 100644
--- a/TAO/examples/Simple/Simple_util.h
+++ b/TAO/examples/Simple/Simple_util.h
@@ -77,7 +77,7 @@ protected:
// The ORB manager - a helper class for accessing the POA and
// registering objects.
- TAO_Naming_Server namingServer;
+ TAO_Naming_Server naming_server_;
// helper class for getting access to Naming Service.
FILE *ior_output_file_;
@@ -86,7 +86,7 @@ protected:
int naming_;
// Flag to indicate whether naming service could be used
- char * ins_;
+ char *ins_;
// Used test the INS.
int argc_;
@@ -96,7 +96,7 @@ protected:
// The command line arguments.
};
-template <class InterfaceObj, class Var>
+template <class INTERFACE_OBJECT, class Var>
class Client
{
// = TITLE
@@ -118,7 +118,7 @@ public:
int init (const char *name,int argc, char *argv[]);
// Initialize the client communication endpoint with server.
- InterfaceObj *operator-> () { return server_.in ();};
+ INTERFACE_OBJECT *operator-> () { return server_.in ();};
// Return the interface object pointer.
int shutdown (void );
diff --git a/TAO/examples/Simple/time-date/Time_Date.cpp b/TAO/examples/Simple/time-date/Time_Date.cpp
index b2da4a3ea23..b4f49596942 100644
--- a/TAO/examples/Simple/time-date/Time_Date.cpp
+++ b/TAO/examples/Simple/time-date/Time_Date.cpp
@@ -1,40 +1,20 @@
// $Id$
-#include "tao/TAO.h"
-#include "../Simple_util.h"
-#include "Time_Date_i.h"
-
-class DLL_ORB : public ACE_Task_Base
-{
-public:
- virtual int init (int argc, char *argv[]);
- // Initialize the <TAO_ORB_Manager>.
-
- virtual int fini (void);
- // Shutdown the <TAO_ORB_Manager>.
-
- virtual int svc (void);
- // Concurrency hook.
-
-private:
- TAO_ORB_Manager orb_manager_;
- // ORB manager.
-
- Server<Time_Date_i> server_;
- // Servant for the <Time_Date> object.
-};
+#define ACE_BUILD_SVC_DLL
+#include "ace/Get_Opt.h"
+#include "ace/Dynamic_Service.h"
+#include "Time_Date.h"
int
DLL_ORB::svc (void)
{
- ACE_DECLARE_NEW_CORBA_ENV;
-
ACE_DEBUG ((LM_DEBUG,
"\n\trunning ORB event loop\n\n"));
- ACE_TRY
+ ACE_TRY_NEW_ENV
{
- this->server_.run (ACE_TRY_ENV);
+ // Run the ORB event loop in its own thread.
+ this->orb_manager_.run (ACE_TRY_ENV);
ACE_TRY_CHECK;
}
ACE_CATCH (CORBA::SystemException, sysex)
@@ -50,33 +30,33 @@ DLL_ORB::svc (void)
return -1;
}
ACE_ENDTRY;
+ return 0;
}
int
DLL_ORB::init (int argc, char *argv[])
{
- ACE_DEBUG ((LM_DEBUG,
- "\n\tTime_Date server\n\n"));
+ ACE_TRY_NEW_ENV
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tInitialize ORB\n\n"));
+
+ // Initialize the ORB.
+ this->orb_manager_.init (argc,
+ argv,
+ ACE_TRY_ENV);
+ ACE_TRY_CHECK;
- // Initialize the ORB.
- if (this->orb_manager_.init (argc,
- argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "ORB_Manager::init"),
- 1);
- // Initialize the <Time_Date_i> servant.
- else if (this->server_.init ("Time_Date",
- argc,
- argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "Server::init"),
- 1);
- else
- // Become an Active Object so that the ORB
- // will execute in a separate thread.
- return this->activate ();
+ // Become an Active Object so that the ORB
+ // will execute in a separate thread.
+ return this->activate ();
+ }
+ ACE_CATCHANY
+ {
+ ACE_TRY_ENV.print_exception ("DLL_ORB::init");
+ return -1;
+ }
+ ACE_ENDTRY;
}
int
@@ -84,3 +64,88 @@ DLL_ORB::fini (void)
{
return 0;
}
+
+int
+Time_Date_Servant::parse_args (int argc, char *argv[])
+{
+ ACE_Get_Opt get_opts (argc, argv, "dn:o:");
+ int c = 0;
+
+ this->orb_ = "ORB";
+
+ while ((c = get_opts ()) != -1)
+ switch (c)
+ {
+ case 'd': // debug flag.
+ TAO_debug_level++;
+ break;
+ case 'o': // output the IOR to a file.
+ this->ior_output_file_ = ACE_OS::fopen (get_opts.optarg, "w");
+ if (this->ior_output_file_ == 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "Unable to open %s for writing: %p\n",
+ get_opts.optarg), -1);
+ break;
+ // Find the ORB in the Service Repository.
+ case 'n':
+ this->orb_ = get_opts.optarg;
+ break;
+ case '?': // display help for use of the server.
+ default:
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "usage: %s"
+ " [-d]"
+ " [-o] <ior_output_file>"
+ "\n",
+ argv [0]),
+ -1);
+ }
+
+ // Indicates successful parsing of command line.
+ return 0;
+}
+
+int
+Time_Date_Servant::init (int argc, char *argv[])
+{
+ ACE_TRY_NEW_ENV
+ {
+ ACE_DEBUG ((LM_DEBUG,
+ "\n\tTime_Date servant\n\n"));
+
+ this->parse_args (argc, argv);
+
+ DLL_ORB *orb = ACE_Dynamic_Service<DLL_ORB>::instance (this->orb_);
+ if (orb == 0)
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "can't find %s in the Service Repository\n",
+ this->orb_),
+ -1);
+
+ CORBA::String_var str = orb->orb_manager_.activate (&servant_,
+ ACE_TRY_ENV);
+ ACE_TRY_CHECK;
+
+ if (this->ior_output_file_)
+ {
+ ACE_OS::fprintf (this->ior_output_file_,
+ "%s",
+ str.in ());
+ ACE_OS::fclose (this->ior_output_file_);
+ }
+
+ }
+ ACE_CATCHANY
+ {
+ ACE_TRY_ENV.print_exception ("DLL_ORB::init");
+ return -1;
+ }
+ ACE_ENDTRY;
+ return 0;
+}
+
+// The following Factory is used by the <ACE_Service_Config> and
+// dll_orb.conf file to dynamically initialize the state of the
+// Time_Date service.
+ACE_SVC_FACTORY_DEFINE (DLL_ORB)
+ACE_SVC_FACTORY_DEFINE (Time_Date_Servant)
diff --git a/TAO/examples/Simple/time-date/Time_Date.idl b/TAO/examples/Simple/time-date/Time_Date.idl
index f32d58e2b6b..842d6060752 100644
--- a/TAO/examples/Simple/time-date/Time_Date.idl
+++ b/TAO/examples/Simple/time-date/Time_Date.idl
@@ -11,7 +11,4 @@ interface Time_Date
void str_date (out string time_date);
// Obtain the time and date in string format.
-
- oneway void shutdown ();
- // Shutdown the application.
};
diff --git a/TAO/examples/Simple/time-date/Time_Date_Client_i.cpp b/TAO/examples/Simple/time-date/Time_Date_Client_i.cpp
index 3c9010a3a9c..6f0f9d62567 100644
--- a/TAO/examples/Simple/time-date/Time_Date_Client_i.cpp
+++ b/TAO/examples/Simple/time-date/Time_Date_Client_i.cpp
@@ -31,7 +31,7 @@ Time_Date_Client_i::run (char *name,
char *argv[])
{
// Initialize the client.
- if (client.init (name, argc, argv) == -1)
+ if (client_.init (name, argc, argv) == -1)
return -1;
if (this->parse_args (argc, argv) == -1)
@@ -44,16 +44,26 @@ Time_Date_Client_i::run (char *name,
CORBA::Long l;
// Get the time_date.
- client->bin_date (l,
- ACE_TRY_ENV);
+ client_->bin_date (l,
+ ACE_TRY_ENV);
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
"(%P|%t) Binary time_date = %d\n",
l));
- if (client.shutdown () == 1)
- client->shutdown (ACE_TRY_ENV);
+ CORBA::String_var str_var;
+ client_->str_date (str_var.out(),
+ ACE_TRY_ENV);
+ ACE_TRY_CHECK;
+
+ ACE_DEBUG ((LM_DEBUG,
+ "(%P|%t) String time_date = %s\n",
+ str_var.in()));
+
+
+ client_.shutdown ();
+
}
ACE_CATCH (CORBA::UserException, range_ex)
{
@@ -64,7 +74,7 @@ Time_Date_Client_i::run (char *name,
ACE_CATCH (CORBA::SystemException, memex)
{
ACE_PRINT_EXCEPTION (memex,
- "Cannot make time_date as Memory exhausted");
+ "Cannot make time_date");
return -1;
}
ACE_ENDTRY;
diff --git a/TAO/examples/Simple/time-date/Time_Date_Client_i.h b/TAO/examples/Simple/time-date/Time_Date_Client_i.h
index a9fb9c806cf..cad2c3bfaeb 100644
--- a/TAO/examples/Simple/time-date/Time_Date_Client_i.h
+++ b/TAO/examples/Simple/time-date/Time_Date_Client_i.h
@@ -14,7 +14,7 @@
//
// = AUTHOR
// Douglas C. Schmidt <schmidt@cs.wustl.edu>
-//
+//
// ============================================================================
#ifndef TIME_DATE_CLIENT_I_H
@@ -23,10 +23,10 @@
#include "../Simple_util.h"
#include "Time_DateC.h"
-class Time_Date_Client_i
+class Time_Date_Client_i
{
// = TITLE
- // Time_Date_Client interface subclass.
+ // Time_Date_Client interface adapter.
//
// = DESCRIPTION
// This class implements the interface between the interface
@@ -43,10 +43,10 @@ public:
// Execute the methods.
virtual int parse_args (int argc, char *argv[]);
- // Parses the command line arguments
+ // Parses the command line arguments.
private:
- Client<Time_Date, Time_Date_var> client;
+ Client<Time_Date, Time_Date_var> client_;
// Instantiate the client object.
};
diff --git a/TAO/examples/Simple/time-date/Time_Date_i.cpp b/TAO/examples/Simple/time-date/Time_Date_i.cpp
index ecf42cdfaab..86474f76411 100644
--- a/TAO/examples/Simple/time-date/Time_Date_i.cpp
+++ b/TAO/examples/Simple/time-date/Time_Date_i.cpp
@@ -17,33 +17,27 @@ Time_Date_i::~Time_Date_i (void)
// no-op.
}
+// Obtain the time and date in binary format.
+
void
Time_Date_i::bin_date (CORBA::Long_out time_date,
CORBA::Environment &ACE_TRY_ENV)
{
- time_date = CORBA::Long (ACE_OS::time (0));
+ time_date = ACE_OS::time (0);
}
-void
+// Obtain the time and date in string format.
+
+void
Time_Date_i::str_date (CORBA::String_out time_date,
CORBA::Environment &ACE_TRY_ENV)
{
-
-}
-
-void
-Time_Date_i::orb (CORBA::ORB_ptr o)
-{
- this->orb_ = CORBA::ORB::_duplicate (o);
+ const time_t time = ACE_OS::time (0);
+ time_date = CORBA::string_dup (ACE_OS::ctime (&time));
}
-void
-Time_Date_i::shutdown (CORBA::Environment & )
+void
+Time_Date_i::orb (CORBA::ORB_ptr orb_ptr)
{
- ACE_DEBUG ((LM_DEBUG,
- "%s\n",
- "Time_i is shutting down"));
-
- // Instruct the ORB to shutdown.
- this->orb_->shutdown ();
+ orb_var_ = CORBA::ORB::_duplicate (orb_ptr);
}
diff --git a/TAO/examples/Simple/time-date/Time_Date_i.h b/TAO/examples/Simple/time-date/Time_Date_i.h
index 9ac98a8426d..4aaa9918817 100644
--- a/TAO/examples/Simple/time-date/Time_Date_i.h
+++ b/TAO/examples/Simple/time-date/Time_Date_i.h
@@ -38,22 +38,18 @@ public:
// Destructor
virtual void bin_date (CORBA::Long_out time_date,
- CORBA::Environment &ACE_TRY_ENV);
+ CORBA::Environment &);
// Obtain the time and date in binary format.
virtual void str_date (CORBA::String_out time_date,
- CORBA::Environment &ACE_TRY_ENV);
+ CORBA::Environment &);
// Obtain the time and date in string format.
- virtual void shutdown (CORBA::Environment &env);
- // Shutdown the server.
-
- void orb (CORBA::ORB_ptr o);
- // Set the ORB pointer.
+ void orb (CORBA::ORB_ptr orb_ptr);
private:
- CORBA::ORB_var orb_;
- // ORB pointer.
+ CORBA::ORB_var orb_var_;
+
};
#endif /* TIME_DATE_I_H */
diff --git a/TAO/examples/Simple/time-date/client.cpp b/TAO/examples/Simple/time-date/client.cpp
index 4700bf2d346..892633514f4 100644
--- a/TAO/examples/Simple/time-date/client.cpp
+++ b/TAO/examples/Simple/time-date/client.cpp
@@ -19,5 +19,3 @@ main (int argc, char *argv[])
return 0;
}
-
-
diff --git a/TAO/examples/Simple/time-date/client.dsp b/TAO/examples/Simple/time-date/client.dsp
index 4ce4e8ca7ae..5945009a0ad 100644
--- a/TAO/examples/Simple/time-date/client.dsp
+++ b/TAO/examples/Simple/time-date/client.dsp
@@ -1,1127 +1,122 @@
-# Microsoft Developer Studio Project File - Name="Simple Time Date Client" - Package Owner=<4>
+# Microsoft Developer Studio Project File - Name="client" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
-# TARGTYPE "Win32 (ALPHA) Console Application" 0x0603
-CFG=Simple Time Date Client - Win32 Alpha Debug
+CFG=client - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
-!MESSAGE
+!MESSAGE
!MESSAGE NMAKE /f "client.mak".
-!MESSAGE
+!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 "client.mak" CFG="Simple Time Date Client - Win32 Alpha Debug"
-!MESSAGE
+!MESSAGE
+!MESSAGE NMAKE /f "client.mak" CFG="client - Win32 Debug"
+!MESSAGE
!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "Simple Time Date Client - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "Simple Time Date Client - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "Simple Time Date Client - Win32 Alpha Debug" (based on "Win32 (ALPHA) Console Application")
-!MESSAGE "Simple Time Date Client - Win32 Alpha Release" (based on "Win32 (ALPHA) Console Application")
-!MESSAGE
+!MESSAGE
+!MESSAGE "client - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "client - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
+!IF "$(CFG)" == "client - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir ".\client\Release"
-# PROP BASE Intermediate_Dir ".\client\Release"
-# PROP BASE Target_Dir ".\client"
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ".\client"
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\\" /I "..\..\..\..\\" /I "..\..\..\orbsvcs" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /FD /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 ace.lib TAO.lib orbsvcs.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace" /libpath:"..\..\..\orbsvcs\orbsvcs"
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
+!ELSEIF "$(CFG)" == "client - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir ".\client\Debug"
-# PROP BASE Intermediate_Dir ".\client\Debug"
-# PROP BASE Target_Dir ".\client"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir ""
-# PROP Intermediate_Dir ".\Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ".\client"
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\\" /I "..\..\..\..\\" /I "..\..\..\orbsvcs" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /FD /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
-# ADD LINK32 aced.lib TAOd.lib orbsvcsd.lib /nologo /subsystem:console /debug /machine:I386 /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace" /libpath:"..\..\..\orbsvcs\orbsvcs"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "client\Alpha Debug"
-# PROP BASE Intermediate_Dir "client\Alpha Debug"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir "client"
+# PROP BASE Output_Dir "client___Win32_Debug"
+# PROP BASE Intermediate_Dir "client___Win32_Debug"
+# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir ""
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
-# PROP Target_Dir "client"
-CPP=cl.exe
-# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /I "..\..\..\\ /I" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /I "..\..\..\\ /I" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /MDd ..\..\..\..\\ /c
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\\" /I "..\..\..\.." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
# SUBTRACT CPP /YX
-RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
-# ADD BASE LINK32 aced.lib TAOd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /debug /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-# ADD LINK32 aced.lib TAOd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /debug /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 aced.lib TAOd.lib orbsvcsd.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\..\..\ace" /libpath:"..\..\..\tao" /libpath:"..\..\..\orbsvcs\orbsvcs"
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "client\Alpha Release"
-# PROP BASE Intermediate_Dir "client\Alpha Release"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir "client"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir "client"
-CPP=cl.exe
-# ADD BASE CPP /nologo /Gt0 /W3 /GX /O2 /I "..\..\..\\ /I" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /nologo /MD /Gt0 /W3 /GX /O2 /I "..\..\..\\ /I" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 ace.lib TAO.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-# ADD LINK32 ace.lib TAO.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-
-!ENDIF
+!ENDIF
# Begin Target
-# Name "Simple Time Date Client - Win32 Release"
-# Name "Simple Time Date Client - Win32 Debug"
-# Name "Simple Time Date Client - Win32 Alpha Debug"
-# Name "Simple Time Date Client - Win32 Alpha Release"
+# Name "client - Win32 Release"
+# Name "client - Win32 Debug"
# Begin Group "Source Files"
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE=.\client.cpp
-
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-DEP_CPP_CLIEN=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\CDR_Interpreter.h"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_CLIEN=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Client_impl.h"\
- ".\Time_DateC.h"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-!ENDIF
-
# End Source File
# Begin Source File
SOURCE=.\Time_Date_Client_i.cpp
-
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-!ENDIF
-
# End Source File
# Begin Source File
SOURCE=.\Time_DateC.cpp
-
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-DEP_CPP_Time_DateC=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\CDR_Interpreter.h"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_Time_DateC=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Time_DateC.h"\
- ".\Time_DateC.i"\
- ".\Time_DateS.h"\
- ".\Time_DateS.i"\
- ".\Time_DateS_T.cpp"\
- ".\Time_DateS_T.h"\
- ".\Time_DateS_T.i"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-!ENDIF
-
# End Source File
# Begin Source File
SOURCE=.\Time_DateS.cpp
-
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-DEP_CPP_Time_DateS=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\CDR_Interpreter.h"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_Time_DateS=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Time_DateC.h"\
- ".\Time_DateC.i"\
- ".\Time_DateS.h"\
- ".\Time_DateS.i"\
- ".\Time_DateS_T.cpp"\
- ".\Time_DateS_T.h"\
- ".\Time_DateS_T.i"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-!ENDIF
-
# End Source File
# End Group
# Begin Group "Header Files"
-# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE=.\Time_Date_Client_i.h
# End Source File
# End Group
-# Begin Group "IDL Files"
-
-# PROP Default_Filter ".idl"
# Begin Source File
-SOURCE=.\Time_Date.idl
-
-!IF "$(CFG)" == "Simple Time Date Client - Win32 Release"
-
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\..\bin\Release\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler on $(InputPath)
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\..\bin\Release\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Debug"
-
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\..\bin\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler on $(InputPath)
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\..\bin\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Debug"
-
-# PROP BASE Ignore_Default_Tool 1
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\tao_idl\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\tao_idl\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Client - Win32 Alpha Release"
-
-# PROP BASE Ignore_Default_Tool 1
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\tao_idl\Release\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\tao_idl\Release\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ENDIF
+SOURCE=.\Time_DateC.i
+# End Source File
+# Begin Source File
+SOURCE=.\Time_DateS.i
# End Source File
-# End Group
# End Target
# End Project
diff --git a/TAO/examples/Simple/time-date/run_test.pl b/TAO/examples/Simple/time-date/run_test.pl
index 7c1e18a1afc..209637952c2 100755
--- a/TAO/examples/Simple/time-date/run_test.pl
+++ b/TAO/examples/Simple/time-date/run_test.pl
@@ -9,13 +9,13 @@ use lib "../../../../bin";
require ACEutils;
require Process;
-$iorfile = "grid.ior";
+$iorfile = "time_date.ior";
-$SV = Process::Create ($EXEPREFIX."server$Process::EXE_EXT", "-o $iorfile ");
+$SV = Process::Create ($EXEPREFIX."server$Process::EXE_EXT");
ACE::waitforfile ($iorfile);
-$status = system ($EXEPREFIX."client$Process::EXE_EXT -f $iorfile -x -w 12 -h 12 -p 2 -q 2 -v 2345");
+$status = system ($EXEPREFIX."client$Process::EXE_EXT -f $iorfile -ORBSkipServiceConfigOpen");
$SV->Kill (); $SV->Wait ();
diff --git a/TAO/examples/Simple/time-date/server.cpp b/TAO/examples/Simple/time-date/server.cpp
index ca745af3558..0733e38b2f4 100644
--- a/TAO/examples/Simple/time-date/server.cpp
+++ b/TAO/examples/Simple/time-date/server.cpp
@@ -3,16 +3,16 @@
// ============================================================================
//
// = LIBRARY
-// examples/DLL_ORB/Misc
+// examples/Simple/time-date
//
// = FILENAME
-// main.cpp
+// server.cpp
//
// = DESCRIPTION
// This directory contains an example that illustrates how the ACE
// Service Configurator can dynamically configure an ORB from a
-// svc.config file.
-//
+// svc.conf file.
+//g
// = AUTHOR
// Doug Schmidt <schmidt@cs.wustl.edu>
//
diff --git a/TAO/examples/Simple/time-date/server.dsp b/TAO/examples/Simple/time-date/server.dsp
index 805daaa2473..fc40c2139e4 100644
--- a/TAO/examples/Simple/time-date/server.dsp
+++ b/TAO/examples/Simple/time-date/server.dsp
@@ -1,1132 +1,98 @@
-# Microsoft Developer Studio Project File - Name="Simple Time Date Server" - Package Owner=<4>
+# Microsoft Developer Studio Project File - Name="server" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
-# TARGTYPE "Win32 (ALPHA) Console Application" 0x0603
-CFG=Simple Time Date Server - Win32 Alpha Debug
+CFG=server - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
-!MESSAGE
+!MESSAGE
!MESSAGE NMAKE /f "server.mak".
-!MESSAGE
+!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 "server.mak" CFG="Simple Time Date Server - Win32 Alpha Debug"
-!MESSAGE
+!MESSAGE
+!MESSAGE NMAKE /f "server.mak" CFG="server - Win32 Debug"
+!MESSAGE
!MESSAGE Possible choices for configuration are:
-!MESSAGE
-!MESSAGE "Simple Time Date Server - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "Simple Time Date Server - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE "Simple Time Date Server - Win32 Alpha Debug" (based on "Win32 (ALPHA) Console Application")
-!MESSAGE "Simple Time Date Server - Win32 Alpha Release" (based on "Win32 (ALPHA) Console Application")
-!MESSAGE
+!MESSAGE
+!MESSAGE "server - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "server - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
+!IF "$(CFG)" == "server - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir ".\server\Release"
-# PROP BASE Intermediate_Dir ".\server\Release"
-# PROP BASE Target_Dir ".\server"
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ".\server"
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MD /W3 /GX /O2 /I "..\..\..\\" /I "..\..\..\..\\" /I "..\..\..\orbsvcs" /D "NDEBUG" /D "WIN32" /D "_CONSOLE" /FD /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 ace.lib TAO.lib orbsvcs.lib /nologo /subsystem:console /machine:I386 /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace" /libpath:"..\..\..\orbsvcs\orbsvcs"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir ".\server\Debug"
-# PROP BASE Intermediate_Dir ".\server\Debug"
-# PROP BASE Target_Dir ".\server"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir ""
-# PROP Intermediate_Dir ".\Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ".\server"
-CPP=cl.exe
-# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /YX /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\\" /I "..\..\..\..\\" /I "..\..\..\orbsvcs" /D "_DEBUG" /D "WIN32" /D "_CONSOLE" /FD /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386
-# ADD LINK32 aced.lib TAOd.lib orbsvcsd.lib /nologo /subsystem:console /debug /machine:I386 /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace" /libpath:"..\..\..\orbsvcs\orbsvcs"
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
+!ELSEIF "$(CFG)" == "server - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "server\Alpha Debug"
-# PROP BASE Intermediate_Dir "server\Alpha Debug"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir "server"
+# PROP BASE Output_Dir "server___Win32_Debug"
+# PROP BASE Intermediate_Dir "server___Win32_Debug"
+# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir ""
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
-# PROP Target_Dir "server"
-CPP=cl.exe
-# ADD BASE CPP /nologo /Gt0 /W3 /GX /Zi /Od /I "..\..\..\\ /I" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /nologo /Gt0 /W3 /GX /Zi /Od /I "..\..\..\\ /I" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /MDd ..\..\..\..\\ /c
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /Zi /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od /I "..\..\..\.." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FD /c
# SUBTRACT CPP /YX
-RSC=rc.exe
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
-# ADD BASE LINK32 aced.lib TAOd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /debug /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-# ADD LINK32 aced.lib TAOd.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /debug /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "server\Alpha Release"
-# PROP BASE Intermediate_Dir "server\Alpha Release"
-# PROP BASE Ignore_Export_Lib 0
-# PROP BASE Target_Dir "server"
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir "server"
-CPP=cl.exe
-# ADD BASE CPP /nologo /Gt0 /W3 /GX /O2 /I "..\..\..\\ /I" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT BASE CPP /YX
-# ADD CPP /nologo /MD /Gt0 /W3 /GX /O2 /I "..\..\..\\ /I" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FD ..\..\..\..\\ /c
-# SUBTRACT CPP /YX
-RSC=rc.exe
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409 /d "NDEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 ace.lib TAO.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
-# ADD LINK32 ace.lib TAO.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib /nologo /subsystem:console /machine:ALPHA /libpath:"..\..\..\tao" /libpath:"..\..\..\..\ace"
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 aced.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept /libpath:"..\..\..\..\ace"
-!ENDIF
+!ENDIF
# Begin Target
-# Name "Simple Time Date Server - Win32 Release"
-# Name "Simple Time Date Server - Win32 Debug"
-# Name "Simple Time Date Server - Win32 Alpha Debug"
-# Name "Simple Time Date Server - Win32 Alpha Release"
+# Name "server - Win32 Release"
+# Name "server - Win32 Debug"
# Begin Group "Source Files"
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE=.\server.cpp
-
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
-
-DEP_CPP_SERVE=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\TAO.h"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_SERVE=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Interpreter.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Server_impl.h"\
- ".\Time_Date_impl.h"\
- ".\Time_DateC.h"\
- ".\Time_DateC.i"\
- ".\Time_DateS.h"\
- ".\Time_DateS.i"\
- ".\Time_DateS_T.cpp"\
- ".\Time_DateS_T.h"\
- ".\Time_DateS_T.i"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Time_Date_i.cpp
-
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Time_DateC.cpp
-
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
-
-DEP_CPP_Time_DateC=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_Time_DateC=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Interpreter.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Time_DateC.h"\
- ".\Time_DateC.i"\
- ".\Time_DateS.h"\
- ".\Time_DateS.i"\
- ".\Time_DateS_T.cpp"\
- ".\Time_DateS_T.h"\
- ".\Time_DateS_T.i"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Time_DateS.cpp
-
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
-
-DEP_CPP_Time_DateS=\
- "..\..\..\..\ace\Acceptor.cpp"\
- "..\..\..\..\ace\Acceptor.h"\
- "..\..\..\..\ace\Acceptor.i"\
- "..\..\..\..\ace\ACE.h"\
- "..\..\..\..\ace\ACE.i"\
- "..\..\..\..\ace\Addr.h"\
- "..\..\..\..\ace\Addr.i"\
- "..\..\..\..\ace\Atomic_Op.i"\
- "..\..\..\..\ace\Auto_Ptr.cpp"\
- "..\..\..\..\ace\Auto_Ptr.h"\
- "..\..\..\..\ace\Auto_Ptr.i"\
- "..\..\..\..\ace\Basic_Types.h"\
- "..\..\..\..\ace\Basic_Types.i"\
- "..\..\..\..\ace\config-win32-borland.h"\
- "..\..\..\..\ace\config-win32-common.h"\
- "..\..\..\..\ace\config-win32.h"\
- "..\..\..\..\ace\config-WinCE.h"\
- "..\..\..\..\ace\config.h"\
- "..\..\..\..\ace\Connector.cpp"\
- "..\..\..\..\ace\Connector.h"\
- "..\..\..\..\ace\Connector.i"\
- "..\..\..\..\ace\Containers.cpp"\
- "..\..\..\..\ace\Containers.h"\
- "..\..\..\..\ace\Containers.i"\
- "..\..\..\..\ace\Dynamic.h"\
- "..\..\..\..\ace\Dynamic.i"\
- "..\..\..\..\ace\Dynamic_Service.cpp"\
- "..\..\..\..\ace\Dynamic_Service.h"\
- "..\..\..\..\ace\Event_Handler.h"\
- "..\..\..\..\ace\Event_Handler.i"\
- "..\..\..\..\ace\Free_List.cpp"\
- "..\..\..\..\ace\Free_List.h"\
- "..\..\..\..\ace\Free_List.i"\
- "..\..\..\..\ace\Get_Opt.h"\
- "..\..\..\..\ace\Get_Opt.i"\
- "..\..\..\..\ace\Handle_Set.h"\
- "..\..\..\..\ace\Handle_Set.i"\
- "..\..\..\..\ace\Hash_Map_Manager.cpp"\
- "..\..\..\..\ace\Hash_Map_Manager.h"\
- "..\..\..\..\ace\inc_user_config.h"\
- "..\..\..\..\ace\INET_Addr.h"\
- "..\..\..\..\ace\INET_Addr.i"\
- "..\..\..\..\ace\IO_Cntl_Msg.h"\
- "..\..\..\..\ace\iosfwd.h"\
- "..\..\..\..\ace\IPC_SAP.h"\
- "..\..\..\..\ace\IPC_SAP.i"\
- "..\..\..\..\ace\Log_Msg.h"\
- "..\..\..\..\ace\Log_Priority.h"\
- "..\..\..\..\ace\Log_Record.h"\
- "..\..\..\..\ace\Log_Record.i"\
- "..\..\..\..\ace\Malloc.h"\
- "..\..\..\..\ace\Malloc.i"\
- "..\..\..\..\ace\Malloc_Base.h"\
- "..\..\..\..\ace\Malloc_T.cpp"\
- "..\..\..\..\ace\Malloc_T.h"\
- "..\..\..\..\ace\Malloc_T.i"\
- "..\..\..\..\ace\Managed_Object.cpp"\
- "..\..\..\..\ace\Managed_Object.h"\
- "..\..\..\..\ace\Managed_Object.i"\
- "..\..\..\..\ace\Map_Manager.cpp"\
- "..\..\..\..\ace\Map_Manager.h"\
- "..\..\..\..\ace\Map_Manager.i"\
- "..\..\..\..\ace\Mem_Map.h"\
- "..\..\..\..\ace\Mem_Map.i"\
- "..\..\..\..\ace\Memory_Pool.h"\
- "..\..\..\..\ace\Memory_Pool.i"\
- "..\..\..\..\ace\Message_Block.h"\
- "..\..\..\..\ace\Message_Block.i"\
- "..\..\..\..\ace\Message_Queue.h"\
- "..\..\..\..\ace\Message_Queue.i"\
- "..\..\..\..\ace\Message_Queue_T.cpp"\
- "..\..\..\..\ace\Message_Queue_T.h"\
- "..\..\..\..\ace\Message_Queue_T.i"\
- "..\..\..\..\ace\Module.cpp"\
- "..\..\..\..\ace\Module.h"\
- "..\..\..\..\ace\Module.i"\
- "..\..\..\..\ace\Object_Manager.h"\
- "..\..\..\..\ace\Object_Manager.i"\
- "..\..\..\..\ace\OS.h"\
- "..\..\..\..\ace\OS.i"\
- "..\..\..\..\ace\Reactor.h"\
- "..\..\..\..\ace\Reactor.i"\
- "..\..\..\..\ace\Reactor_Impl.h"\
- "..\..\..\..\ace\Service_Config.h"\
- "..\..\..\..\ace\Service_Config.i"\
- "..\..\..\..\ace\Service_Object.h"\
- "..\..\..\..\ace\Service_Object.i"\
- "..\..\..\..\ace\Service_Repository.h"\
- "..\..\..\..\ace\Service_Repository.i"\
- "..\..\..\..\ace\Service_Types.h"\
- "..\..\..\..\ace\Service_Types.i"\
- "..\..\..\..\ace\Shared_Object.h"\
- "..\..\..\..\ace\Shared_Object.i"\
- "..\..\..\..\ace\Signal.h"\
- "..\..\..\..\ace\Signal.i"\
- "..\..\..\..\ace\Singleton.cpp"\
- "..\..\..\..\ace\Singleton.h"\
- "..\..\..\..\ace\Singleton.i"\
- "..\..\..\..\ace\SOCK.h"\
- "..\..\..\..\ace\SOCK.i"\
- "..\..\..\..\ace\SOCK_Acceptor.h"\
- "..\..\..\..\ace\SOCK_Acceptor.i"\
- "..\..\..\..\ace\SOCK_Connector.h"\
- "..\..\..\..\ace\SOCK_Connector.i"\
- "..\..\..\..\ace\SOCK_IO.h"\
- "..\..\..\..\ace\SOCK_IO.i"\
- "..\..\..\..\ace\SOCK_Stream.h"\
- "..\..\..\..\ace\SOCK_Stream.i"\
- "..\..\..\..\ace\SString.h"\
- "..\..\..\..\ace\SString.i"\
- "..\..\..\..\ace\Strategies.h"\
- "..\..\..\..\ace\Strategies.i"\
- "..\..\..\..\ace\Strategies_T.cpp"\
- "..\..\..\..\ace\Strategies_T.h"\
- "..\..\..\..\ace\Strategies_T.i"\
- "..\..\..\..\ace\Stream_Modules.cpp"\
- "..\..\..\..\ace\Stream_Modules.h"\
- "..\..\..\..\ace\Stream_Modules.i"\
- "..\..\..\..\ace\streams.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.h"\
- "..\..\..\..\ace\SV_Semaphore_Complex.i"\
- "..\..\..\..\ace\SV_Semaphore_Simple.h"\
- "..\..\..\..\ace\SV_Semaphore_Simple.i"\
- "..\..\..\..\ace\Svc_Conf_Tokens.h"\
- "..\..\..\..\ace\Svc_Handler.cpp"\
- "..\..\..\..\ace\Svc_Handler.h"\
- "..\..\..\..\ace\Svc_Handler.i"\
- "..\..\..\..\ace\Synch.h"\
- "..\..\..\..\ace\Synch.i"\
- "..\..\..\..\ace\Synch_Options.h"\
- "..\..\..\..\ace\Synch_Options.i"\
- "..\..\..\..\ace\Synch_T.cpp"\
- "..\..\..\..\ace\Synch_T.h"\
- "..\..\..\..\ace\Synch_T.i"\
- "..\..\..\..\ace\Task.h"\
- "..\..\..\..\ace\Task.i"\
- "..\..\..\..\ace\Task_T.cpp"\
- "..\..\..\..\ace\Task_T.h"\
- "..\..\..\..\ace\Task_T.i"\
- "..\..\..\..\ace\Thread.h"\
- "..\..\..\..\ace\Thread.i"\
- "..\..\..\..\ace\Thread_Manager.h"\
- "..\..\..\..\ace\Thread_Manager.i"\
- "..\..\..\..\ace\Time_Date_Value.h"\
- "..\..\..\..\ace\Time_Dater_Queue.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.cpp"\
- "..\..\..\..\ace\Time_Dater_Queue_T.h"\
- "..\..\..\..\ace\Time_Dater_Queue_T.i"\
- "..\..\..\..\ace\Trace.h"\
- "..\..\..\..\ace\WFMO_Reactor.h"\
- "..\..\..\..\ace\WFMO_Reactor.i"\
- "..\..\..\..\ace\ws2tcpip.h"\
- "..\..\..\tao\Any.h"\
- "..\..\..\tao\Any.i"\
- "..\..\..\tao\CDR.h"\
- "..\..\..\tao\CDR.i"\
- "..\..\..\tao\Client_Strategy_Factory.h"\
- "..\..\..\tao\Connect.h"\
- "..\..\..\tao\Connect.i"\
- "..\..\..\tao\corba.h"\
- "..\..\..\tao\CurrentC.h"\
- "..\..\..\tao\CurrentC.i"\
- "..\..\..\tao\debug.h"\
- "..\..\..\tao\default_client.h"\
- "..\..\..\tao\default_client.i"\
- "..\..\..\tao\default_server.h"\
- "..\..\..\tao\default_server.i"\
- "..\..\..\tao\Environment.h"\
- "..\..\..\tao\Environment.i"\
- "..\..\..\tao\Exception.h"\
- "..\..\..\tao\Exception.i"\
- "..\..\..\tao\GIOP.h"\
- "..\..\..\tao\GIOP.i"\
- "..\..\..\tao\Invocation.h"\
- "..\..\..\tao\Invocation.i"\
- "..\..\..\tao\Marshal.h"\
- "..\..\..\tao\Marshal.i"\
- "..\..\..\tao\NVList.h"\
- "..\..\..\tao\NVList.i"\
- "..\..\..\tao\Object.h"\
- "..\..\..\tao\Object.i"\
- "..\..\..\tao\Object_KeyC.h"\
- "..\..\..\tao\Object_KeyC.i"\
- "..\..\..\tao\Operation_Table.h"\
- "..\..\..\tao\ORB.h"\
- "..\..\..\tao\ORB.i"\
- "..\..\..\tao\ORB_Core.h"\
- "..\..\..\tao\ORB_Core.i"\
- "..\..\..\tao\ORB_Strategies_T.cpp"\
- "..\..\..\tao\ORB_Strategies_T.h"\
- "..\..\..\tao\ORB_Strategies_T.i"\
- "..\..\..\tao\orbconf.h"\
- "..\..\..\tao\params.h"\
- "..\..\..\tao\params.i"\
- "..\..\..\tao\POA.h"\
- "..\..\..\tao\POA.i"\
- "..\..\..\tao\POA_CORBA.h"\
- "..\..\..\tao\poa_macros.h"\
- "..\..\..\tao\POAC.h"\
- "..\..\..\tao\POAC.i"\
- "..\..\..\tao\POAS.h"\
- "..\..\..\tao\POAS.i"\
- "..\..\..\tao\PolicyC.h"\
- "..\..\..\tao\PolicyC.i"\
- "..\..\..\tao\Principal.h"\
- "..\..\..\tao\Principal.i"\
- "..\..\..\tao\Request.h"\
- "..\..\..\tao\Request.i"\
- "..\..\..\tao\Sequence.h"\
- "..\..\..\tao\Sequence.i"\
- "..\..\..\tao\Sequence_T.cpp"\
- "..\..\..\tao\Sequence_T.h"\
- "..\..\..\tao\Sequence_T.i"\
- "..\..\..\tao\Servant_Base.h"\
- "..\..\..\tao\Server_Request.h"\
- "..\..\..\tao\Server_Request.i"\
- "..\..\..\tao\Server_Strategy_Factory.h"\
- "..\..\..\tao\singletons.h"\
- "..\..\..\tao\Stub.h"\
- "..\..\..\tao\Stub.i"\
- "..\..\..\tao\Typecode.h"\
- "..\..\..\tao\Typecode.i"\
- "..\..\..\tao\Union.h"\
- "..\..\..\tao\varout.cpp"\
- "..\..\..\tao\varout.h"\
- "..\..\..\tao\varout.i"\
-
-NODEP_CPP_Time_DateS=\
- "..\..\..\..\ace\sys_conf.h"\
- "..\..\..\tao\Align.h"\
- "..\..\..\tao\IIOP_Interpreter.h"\
- "..\..\..\tao\IIOP_Object.h"\
- "..\..\..\tao\IIOP_Object.i"\
- "..\..\..\tao\IIOP_ORB.h"\
- "..\..\..\tao\IIOP_ORB.i"\
- "..\..\..\tao\Object_Table.h"\
- ".\Time_DateC.h"\
- ".\Time_DateC.i"\
- ".\Time_DateS.h"\
- ".\Time_DateS.i"\
- ".\Time_DateS_T.cpp"\
- ".\Time_DateS_T.h"\
- ".\Time_DateS_T.i"\
-
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-!ENDIF
-
# End Source File
# End Group
# Begin Group "Header Files"
-# PROP Default_Filter "h;hpp;hxx;hm;inl;fi;fd"
-# Begin Source File
-
-SOURCE=.\Time_Date_i.h
-# End Source File
-# End Group
-# Begin Group "IDL Files"
-
-# PROP Default_Filter ".idl"
-# Begin Source File
-
-SOURCE=.\Time_Date.idl
-
-!IF "$(CFG)" == "Simple Time Date Server - Win32 Release"
-
-USERDEP__Time_Date_="..\..\..\..\bin\Release\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler on $(InputPath)
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\..\bin\Release\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Debug"
-
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\..\bin\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler on $(InputPath)
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\..\bin\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Debug"
-
-# PROP BASE Ignore_Default_Tool 1
-# PROP Ignore_Default_Tool 1
-USERDEP__Time_Date_="..\..\..\tao_idl\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\tao_idl\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ELSEIF "$(CFG)" == "Simple Time Date Server - Win32 Alpha Release"
-
-USERDEP__Time_Date_="..\..\..\tao_idl\Release\tao_idl.exe"
-# Begin Custom Build - Invoking TAO_IDL Compiler
-InputPath=.\Time_Date.idl
-InputName=Time_Date
-
-BuildCmds= \
- ..\..\..\tao_idl\Release\tao_idl $(InputName).idl
-
-"$(InputName)C.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)C.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.h" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.i" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-
-"$(InputName)S_T.cpp" : $(SOURCE) "$(INTDIR)" "$(OUTDIR)"
- $(BuildCmds)
-# End Custom Build
-
-!ENDIF
-
-# End Source File
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
# End Group
# End Target
# End Project
diff --git a/TAO/examples/Simple/time-date/svc.conf b/TAO/examples/Simple/time-date/svc.conf
index 1cca8e22f43..8547c310c78 100644
--- a/TAO/examples/Simple/time-date/svc.conf
+++ b/TAO/examples/Simple/time-date/svc.conf
@@ -1,2 +1,3 @@
# Dynamically configure the Time_Date service into the application process.
-dynamic Time_Date Service_Object * Time_Date:_make_DLL_ORB()
+dynamic ORB Service_Object * Time_Date:_make_DLL_ORB() "dummy -ORBSkipServiceConfigOpen"
+dynamic Time_Date_Servant Service_Object * Time_Date:_make_Time_Date_Servant() "dummy -n ORB -o ior"