aboutsummaryrefslogtreecommitdiff
path: root/src/storage.cc
diff options
context:
space:
mode:
authoreschnett <eschnett@83718e91-0e4f-0410-abf4-91180603181f>2010-06-30 22:51:04 +0000
committereschnett <eschnett@83718e91-0e4f-0410-abf4-91180603181f>2010-06-30 22:51:04 +0000
commitc36bf320da429160ff61f2772f1a3fc0ddb7fc58 (patch)
tree0618eb16233da41083ccfc866cb930530b4e7609 /src/storage.cc
parentb67dd69ee349f83b255cf71bdb0dd2900299481e (diff)
Clean up the source code handling the announce mechanism in Formaline.
Restructure and clean up the makefiles and perl scripts that capture the source code when Cactus is built. Make things work with recent versions of git (>1.6.1). Split thorn tarballs into multiple files if they become too large. Update Formaline example parameter files. Use Carpet instead of PUGH, activate missing thorns. Some reformatting. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@187 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/storage.cc')
-rw-r--r--src/storage.cc24
1 files changed, 10 insertions, 14 deletions
diff --git a/src/storage.cc b/src/storage.cc
index 4e0dd24..4e4abff 100644
--- a/src/storage.cc
+++ b/src/storage.cc
@@ -6,33 +6,29 @@
namespace Formaline
{
-
- using namespace std;
-
-
-
+
storage::
storage (enum state const st)
: m_state (st)
{
}
-
-
-
+
+
+
storage::
~ storage ()
{
}
-
-
-
+
+
+
enum storage::state storage::
get_state ()
const
{
return m_state;
}
-
-
-
+
+
+
} // namespace Formaline