~jpakkane/unity-scopes-api/simplelogging

« back to all changes in this revision

Viewing changes to include/unity/scopes/internal/ActivationQueryBaseImpl.h

  • Committer: Jussi Pakkanen
  • Date: 2014-03-05 14:02:15 UTC
  • mfrom: (253.1.6 devel)
  • Revision ID: jussi.pakkanen@canonical.com-20140305140215-z3jsyeg8p3xmf5n9
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Pawel Stolowski <pawel.stolowski@canonical.com>
17
17
 */
18
18
 
19
 
#ifndef UNITY_SCOPES_INTERNAL_ACTIVATIONBASEIMPL_H
20
 
#define UNITY_SCOPES_INTERNAL_ACTIVATIONBASEIMPL_H
 
19
#ifndef UNITY_SCOPES_INTERNAL_ACTIVATIONQUERYBASEIMPL_H
 
20
#define UNITY_SCOPES_INTERNAL_ACTIVATIONQUERYBASEIMPL_H
21
21
 
22
22
#include <unity/scopes/ActivationResponse.h>
23
23
#include <unity/util/NonCopyable.h>
31
31
namespace internal
32
32
{
33
33
 
34
 
class ActivationBaseImpl final
 
34
class ActivationQueryBaseImpl final
35
35
{
36
36
public:
37
 
    NONCOPYABLE(ActivationBaseImpl);
 
37
    NONCOPYABLE(ActivationQueryBaseImpl);
38
38
 
39
 
    ActivationBaseImpl() = default;
40
 
    ~ActivationBaseImpl() = default;
 
39
    ActivationQueryBaseImpl() = default;
 
40
    ~ActivationQueryBaseImpl() = default;
41
41
    ActivationResponse activate();
42
42
};
43
43