Atoms Crowd  7.0.0
SyncLayoutGenerator.impl.h
1 // ===========================================================================
2 // Copyright (c) 2015 Toolchefs Ltd. All rights reserved.
3 //
4 // Use of this software is subject to the terms of the Toolchefs license
5 // agreement provided at the time of installation or download, or which
6 // otherwise accompanies this software in either electronic or hard copy form.
7 // ===========================================================================
8 
9 namespace Atoms
10 {
11  void SyncLayoutGenerator::setParentGenerator(Atoms::LayoutGeneratorPtr& parent)
12  {
13  m_parentGenerator = parent;
14  }
15 
16  void SyncLayoutGenerator::setDefaultAgentType(const std::string& data)
17  {
18  AtomsUtils::Logger::warning() << "SyncLayoutGenerator.setDefaultAgentType method is deprecated.";
19  }
20 
21  const std::string SyncLayoutGenerator::defaultAgentType() const
22  {
23  AtomsUtils::Logger::warning() << "SyncLayoutGenerator.defaultAgentType method is deprecated.";
24  return "";
25  }
26 }
static LogProxy warning()
Get logger proxy warning.
Atoms namespace.
Definition: Agent.h:29