/*******************************************************************************
 *
 * File:     Invoker.cpp
 *
 * Contents: Implementation of non-template part of Invoker.
 *
 * Copyright 2017
 *
 * Author: David Juhasz (david.juhasz@tuwien.ac.at)
 *
 ******************************************************************************/

#include "rosa/core/Invoker.hpp"

namespace rosa {

Invoker::Invoker(void) noexcept { LOG_TRACE("Creating Invoker"); }

Invoker::~Invoker(void) { LOG_TRACE("Destroying Invoker"); }

} // End namespace rosa

