summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-12-02 19:39:46 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-12-02 19:39:46 +0000
commit32480747d2930683651d44f65aa1bc8ac588b889 (patch)
treed757a0b7e2498947de3cf0dfa8157ede0f9fd98e
parent0f4945223ac0d2f36e2f6d450349a4c77e9cd7b4 (diff)
downloadATCD-32480747d2930683651d44f65aa1bc8ac588b889.tar.gz
ChangeLogTag: Thu Dec 2 13:38:33 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--apps/soreduce/Library.cpp5
-rw-r--r--apps/soreduce/Library.h16
2 files changed, 10 insertions, 11 deletions
diff --git a/apps/soreduce/Library.cpp b/apps/soreduce/Library.cpp
index 2d3546467ef..20660b8f49a 100644
--- a/apps/soreduce/Library.cpp
+++ b/apps/soreduce/Library.cpp
@@ -49,8 +49,8 @@ MPC_Generator::write_prolog (const ACE_CString& path)
if (!mpcfile_)
ACE_DEBUG ((LM_DEBUG,"mpc file open failed\n"));
- mpcfile_
- << "// Generated mpc file for producing a subset of the "
+ mpcfile_
+ << "// Generated mpc file for producing a subset of the "
<< libname_ << " library " << endl << endl
<< "project(" << libname_ << "_subset)";
@@ -155,7 +155,6 @@ MPC_TAO_Dep_Lib::write_projectinfo()
<< " after += TAO_subset" << endl
<< " includes += $(TAO_ROOT)/orbsvcs" << endl
<< " idlflags += -I$(TAO_ROOT)/orbsvcs" << endl;
-
}
//-----------------------------------------------------------------------------
diff --git a/apps/soreduce/Library.h b/apps/soreduce/Library.h
index 9b291f80529..af978c61f74 100644
--- a/apps/soreduce/Library.h
+++ b/apps/soreduce/Library.h
@@ -9,10 +9,10 @@
// Author: Phil Mesnier
-// A Library is a collection of Obj_Modules that define a single shared
-// library. It is used to manipulate the list of unresolved references by
+// A Library is a collection of Obj_Modules that define a single shared
+// library. It is used to manipulate the list of unresolved references by
// removing those that are resolved and adding those brought in by new modules
-// that are required to resolve references. The Library is responsible
+// that are required to resolve references. The Library is responsible
// for outputting a specialized mpc file to build the reduce footprint library.
#include "Obj_Module.h"
@@ -66,7 +66,7 @@ protected:
};
// Generates makefiles for libs dependant on TAO. This has a problem when
-// building libraries in the orbsvcs tree.
+// building libraries in the orbsvcs tree.
class MPC_TAO_Dep_Lib : public MPC_TAO_Lib
{
public:
@@ -79,11 +79,11 @@ protected:
//----------------------------------------------------------------------------
-class Library
+class Library
{
public:
- Library (const ACE_TCHAR *name = 0 );
+ Library (const ACE_TCHAR *name = 0 );
/// Constructor is responsible for loading all of the modules related to the
/// library
~Library ();
@@ -115,11 +115,11 @@ public:
private:
ACE_CString name_;
ACE_CString path_;
-
+
int num_modules_;
int num_exports_;
int num_extrefs_;
-
+
Obj_Module **modules_;
Sig_List exported_;
MPC_Generator *mpcfile_;