Page Menu
Home
Xreate
Search
Configure Global Search
Log In
Docs
Questions
Repository
Issues
Patches
Internal API
Files
F4000245
ipass.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, 3:51 AM
Size
735 B
Mime Type
text/x-c++
Expires
Sat, Jul 11, 3:51 AM (1 d, 5 h)
Engine
blob
Format
Raw Data
Handle
273279
Attached To
rXR Xreate
ipass.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: Jan, 2020
*/
#ifndef XREATE_IPASS_H
#define XREATE_IPASS_H
namespace xreate{
class PassManager;
/** \brief Interface for all passes to inherit. \ref xreate::PassManager holds a collection of passes to execute */
class IPass{
public:
IPass(PassManager *manager);
virtual ~IPass(){}
/** \brief Executes pass */
virtual void run() = 0;
/** \brief Finalizes pass. Empty by default*/
virtual void finish();
PassManager *man;
};
}
#endif //XREATE_IPASS_H
Event Timeline
Log In to Comment