Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add CuteLogger.pri and source build feature #21

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion include/Logger.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*
/*
Copyright (c) 2012 Boris Moiseev (cyberbobs at gmail dot com)

This program is free software: you can redistribute it and/or modify
Expand Down Expand Up @@ -71,6 +71,7 @@ CUTELOGGERSHARED_EXPORT Logger* loggerInstance();
class LoggerPrivate;
class CUTELOGGERSHARED_EXPORT Logger
{
private:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is absolutely unnecessary: see issue #22.

Q_DISABLE_COPY(Logger)

public:
Expand Down Expand Up @@ -128,6 +129,7 @@ class CUTELOGGERSHARED_EXPORT Logger

class CUTELOGGERSHARED_EXPORT CuteMessageLogger
{
private:
Q_DISABLE_COPY(CuteMessageLogger)

public:
Expand Down Expand Up @@ -175,6 +177,7 @@ class CUTELOGGERSHARED_EXPORT CuteMessageLogger

class CUTELOGGERSHARED_EXPORT LoggerTimingHelper
{
private:
Q_DISABLE_COPY(LoggerTimingHelper)

public:
Expand Down