source: trunk/IPs/systemC/processor/Morpheo/Common/include/Tabulation.h @ 94

Last change on this file since 94 was 94, checked in by rosiere, 16 years ago

Update document on Vhdl generation.

  • Property svn:keywords set to Id
File size: 311 bytes
Line 
1#ifndef Morpheo_Tabulation_h
2#define Morpheo_Tabulation_h
3
4/*
5 * $Id: Tabulation.h 94 2008-12-15 11:04:03Z rosiere $
6 *
7 * [ Description ]
8 *
9 */
10
11#include <stdint.h>
12#include <string>
13
14namespace morpheo              {
15
16  inline std::string tab (uint32_t depth)
17  {
18    return std::string(depth,'\t');
19  }
20
21}; // end namespace morpheo             
22
23#endif
Note: See TracBrowser for help on using the repository browser.