Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 4, 2013, 10:24:30 PM (11 years ago)
Author:
landauf
Message:

more tests

Location:
code/branches/testing/src/libraries/util/output
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • code/branches/testing/src/libraries/util/output/ConsoleWriter.h

    r8858 r9535  
    5050    {
    5151        public:
     52            ConsoleWriter();
     53            ConsoleWriter(const ConsoleWriter&);
     54            virtual ~ConsoleWriter();
     55
    5256            static ConsoleWriter& getInstance();
    5357
     
    5963
    6064        private:
    61             ConsoleWriter();
    62             ConsoleWriter(const ConsoleWriter&);
    63             virtual ~ConsoleWriter();
    64 
    6565            bool bEnabled_; ///< If false, the instance will not write output to the console.
    6666    };
  • code/branches/testing/src/libraries/util/output/LogWriter.h

    r8858 r9535  
    5757    {
    5858        public:
     59            LogWriter();
     60            LogWriter(const LogWriter&);
     61            virtual ~LogWriter();
     62
    5963            static LogWriter& getInstance();
    6064
     
    6569
    6670        private:
    67             LogWriter();
    68             LogWriter(const LogWriter&);
    69             virtual ~LogWriter();
    70 
    7171            void openFile();
    7272            void closeFile();
  • code/branches/testing/src/libraries/util/output/MemoryWriter.h

    r8858 r9535  
    6767
    6868        public:
     69            MemoryWriter();
     70            MemoryWriter(const MemoryWriter&);
     71            virtual ~MemoryWriter();
     72
    6973            static MemoryWriter& getInstance();
    7074
     
    7680
    7781        private:
    78             MemoryWriter();
    79             MemoryWriter(const MemoryWriter&);
    80             virtual ~MemoryWriter();
    81 
    8282            std::vector<Message> messages_; ///< Stores all output messages from the creation of this instance until disable() is called.
    8383    };
  • code/branches/testing/src/libraries/util/output/OutputDefinitions.h

    r8879 r9535  
    105105        OutputContextSubID sub_id;  ///< The id of the sub-context (or context::no_subcontext if this container doesn't define a sub-context)
    106106        std::string name;           ///< The name of this context
     107
     108        inline bool operator==(const OutputContextContainer& other) const
     109        {
     110            return this->mask == other.mask && this->sub_id == other.sub_id && this->name == other.name;
     111        }
    107112    };
    108113
  • code/branches/testing/src/libraries/util/output/OutputManager.h

    r9533 r9535  
    102102            std::string getDefaultPrefix(OutputLevel level, const OutputContextContainer& context) const;
    103103
    104         protected:
    105104            inline const std::vector<OutputListener*>& getListeners() const
    106105                { return this->listeners_; }
Note: See TracChangeset for help on using the changeset viewer.