X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=source%2Fdbms%2FBind.cpp;fp=source%2Fdbms%2FBind.cpp;h=0000000000000000000000000000000000000000;hb=851ff2962362fd5bad874e8ed91445b296eaca24;hp=b54cdbea53f59c52ac71ecc63991c7a538197bcc;hpb=78be86969d2f26a9084b0c4af6ce43d5fa4ed3fd;p=anna.git diff --git a/source/dbms/Bind.cpp b/source/dbms/Bind.cpp deleted file mode 100644 index b54cdbe..0000000 --- a/source/dbms/Bind.cpp +++ /dev/null @@ -1,23 +0,0 @@ -// ANNA - Anna is Not Nothingness Anymore // -// // -// (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo // -// // -// See project site at http://redmine.teslayout.com/projects/anna-suite // -// See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE // - - -#include -#include - -using namespace anna; - -std::string dbms::Bind::asString() const -throw() { - std::string result("dbms::Bind { Name: "); - result += a_name; - result += " | "; - result += a_data.asString(); - return result += " }"; -} - -