Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F3999376
transcend-decorators.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jul 9, 2:07 AM
Size
1 KB
Mime Type
text/x-c++
Expires
Sat, Jul 11, 2:07 AM (1 d, 6 h)
Engine
blob
Format
Raw Data
Handle
273084
Attached To
rXR Xreate
transcend-decorators.h
View Options
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Author: pgess <v.melnychenko@xreate.org>
* Created on June 7, 2018, 6:47 PM
*/
/**
* \file transcend-decorators.h
* \brief \ref xreate::TranscendLayer decorators management
*/
#include "transcendlayer.h"
#include "aux/latereasoning.h"
#ifndef TRANSCEND_DECORATORS_H
#define TRANSCEND_DECORATORS_H
namespace xreate {
/**
* \brief Default \ref xreate::TranscendLayer functionality
* \extends xreate::TranscendLayer
*/
typedef latereasoning::LateReasoningTranscendDecorator<TranscendLayer>
DefaultTranscendLayerImpl;
struct LateReasoningTranscendDecoratorTag;
template<>
struct DecoratorsDict<LateReasoningTranscendDecoratorTag>{
typedef latereasoning::LateReasoningTranscendDecorator<TranscendLayer> result;
};
}
#endif /* TRANSCEND_DECORATORS_H */
Event Timeline
Log In to Comment