MyraMath
writeprofile.h
Go to the documentation of this file.
1 // ========================================================================= //
2 // This file is part of MyraMath, copyright (c) 2014-2019 by Ryan A Chilton //
3 // and distributed by MyraCore, LLC. See LICENSE.txt for license terms. //
4 // ========================================================================= //
5 
6 #ifndef MYRAMATH_JOBGRAPH_WRITEPROFILE_H
7 #define MYRAMATH_JOBGRAPH_WRITEPROFILE_H
8 
14 #include <myramath/MYRAMATH_EXPORT.h>
15 
16 #include <map>
17 #include <string>
18 #include <iosfwd>
19 
20 namespace myra {
21 
23 MYRAMATH_EXPORT void writeprofile(const std::map<int,double>& timing, std::ostream& out);
24 MYRAMATH_EXPORT void writeprofile(const std::map<int,double>& timing, const char* filename);
25 MYRAMATH_EXPORT void writeprofile(const std::map<int,double>& timing, const std::string& filename);
26 
27 } // namespace myra
28 
29 #endif
Definition: syntax.dox:1