Logo white

open_source / logger

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • logger
  • tests
  • main.cpp
  • Static Logger class - initial push
    13df26c3
    Steven authored
    2022-04-14 15:02:55 +0200  
    Browse Code ยป
main.cpp 163 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream>

#include "logtest.h"

int main( int argc, char* argv[] )
{
    (void)argc;
    (void)argv;

    LogTest pLogTest;
    pLogTest.writeTest();
}