Ignore:
Timestamp:
03/08/06 13:32:27 (18 years ago)
Author:
mar637
Message:

asap2 naming changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/python_SDLog.cc

    r886 r890  
    11//#---------------------------------------------------------------------------
    2 //# python_SDLog.cc: python exposure of c++ SDLog class
     2//# python_Logger.cc: python exposure of c++ Logger class
    33//#---------------------------------------------------------------------------
    44//# Copyright (C) 2004
     
    3737namespace asap {
    3838  namespace python {
    39     void python_SDLog() {
    40       class_<SDLog>("Log")
     39    void python_Logger() {
     40      class_<Logger>("Log")
    4141        .def( init <> () )
    4242        //.def( init <bool> () )
    43         .def("push", &SDLog::pushLog,
     43        .def("push", &Logger::pushLog,
    4444         (boost::python::arg("newline")=1))
    45         .def("pop", &SDLog::popLog)
    46         .def("disable", &SDLog::disableLog)
    47         .def("enable", &SDLog::enableLog)
     45        .def("pop", &Logger::popLog)
     46        .def("disable", &Logger::disableLog)
     47        .def("enable", &Logger::enableLog)
    4848      ;
    4949    };
Note: See TracChangeset for help on using the changeset viewer.