summaryrefslogtreecommitdiff
path: root/project2/fileStrmVarWriter.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-07-22 15:55:02 +0000
committerrandomdan <randomdan@localhost>2011-07-22 15:55:02 +0000
commitb6eb20f2ba86ac00297ad32d4ed47b36dcd052e4 (patch)
tree1ebc42bf4d6d68c5e2adfcd48536f84d33273060 /project2/fileStrmVarWriter.cpp
parentFix order of html and warnings flags in XslCachePopulator (diff)
downloadproject2-b6eb20f2ba86ac00297ad32d4ed47b36dcd052e4.tar.bz2
project2-b6eb20f2ba86ac00297ad32d4ed47b36dcd052e4.tar.xz
project2-b6eb20f2ba86ac00297ad32d4ed47b36dcd052e4.zip
Remove the pointer versions of variable type members
Add a new variable that looks up it's value in a map populated from a standard rowset
Diffstat (limited to 'project2/fileStrmVarWriter.cpp')
-rw-r--r--project2/fileStrmVarWriter.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/project2/fileStrmVarWriter.cpp b/project2/fileStrmVarWriter.cpp
index 564c86a..1af99dc 100644
--- a/project2/fileStrmVarWriter.cpp
+++ b/project2/fileStrmVarWriter.cpp
@@ -53,15 +53,7 @@ void FileStreamVariableWriter::operator()(const Glib::ustring & i) const {
// Care much? None of the others check.
}
}
-void FileStreamVariableWriter::operator()(const boost::shared_ptr<const Glib::ustring> & i) const {
- if (fwrite(i->c_str(), i->bytes(), 1, out) < 1) {
- // Care much? None of the others check.
- }
-}
void FileStreamVariableWriter::operator()(const boost::posix_time::ptime & i) const {
fprintf(out, "[%s]", boost::posix_time::to_iso_extended_string(i).c_str());
}
-void FileStreamVariableWriter::operator()(const boost::shared_ptr<const boost::posix_time::ptime> & i) const {
- fprintf(out, "[%s]", boost::posix_time::to_iso_extended_string(*i).c_str());
-}