COOPY » Guide  version 0.6.5
/home/paulfitz/cvs/coopy_scm/coopy/src/libcoopy_core/SheetCell.cpp
Go to the documentation of this file.
00001 #include <coopy/SheetCell.h>
00002 
00003 #include <stdio.h>
00004 #include <stdlib.h>
00005 
00006 using namespace coopy::store;
00007 
00008 SheetCell::SheetCell(int x) {
00009   char buf[256];
00010   sprintf(buf,"%d",x);
00011   text = buf;
00012   escaped = false;
00013 }
00014 
00015 SheetCell SheetCell::makeInt(int x) {
00016   char buf[256];
00017   sprintf(buf,"%d",x);
00018   return SheetCell(buf,false);
00019 }
00020 
00021 
00022 int SheetCell::asInt() const {
00023   if (escaped) return 0;
00024   return atoi(text.c_str());
00025 }
00026 
00027 
00028 
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines