Updated license
[anna.git] / example / timex / ArithmeticHTTPServer / Context.hpp
index aee3338..a24b363 100644 (file)
@@ -1,4 +1,4 @@
-// ANNA - Anna is Not 'N' Anymore
+// ANNA - Anna is Not Nothingness Anymore
 //
 // (c) Copyright 2005-2014 Eduardo Ramos Testillano & Francisco Ruiz Rayo
 //
@@ -53,11 +53,11 @@ class Transaction;
 
 using namespace anna;
 
-class Context : public timex::Context <Integer64> {
+class Context : public timex::Context <S64> {
 public:
    Context (timex::Engine&, const Millisecond& timeout);
    
-   void create (const Integer64 id, comm::ClientSocket&) throw (RuntimeException);
+   void create (const S64 id, comm::ClientSocket&) throw (RuntimeException);
    void destroy (Transaction*) throw ();
 
 private:
@@ -66,8 +66,8 @@ private:
    timex::Transaction* createTransaction (const int /*classType*/) throw ();
    void releaseTransaction (timex::Transaction* tt) throw ();
 
-   std::string identifierAsString (const Integer64&) const throw ();
-   const Integer64& contextAsIdentifier (const void*) const throw ();
+   std::string identifierAsString (const S64&) const throw ();
+   const S64& contextAsIdentifier (const void*) const throw ();
    
    Context (const Context&);
 };