-
Macro engine
Hi All,
I'm looking for a macro engine in C++ for a application that I am writting.
Thanks in advance.
Ken
-
What's a macro engine? The standard preprocessor? You can find open source implementations at www.gnu.org. The preprocessor is often integrated into the compiler's code so you may have to download the compiler's sources and sift out the relevant parts.
Danny Kalev
-
Hi,
I was thinking along the lines of something that can handle this.
"/<macro> <command>" or "%command argument%" this will be fed into the application during run time.
-
Well, this looks more like a regex engine. You can download the almost standard regex library from www.boost.org. The regex class enables you to define delimters, tokens and so on.
Danny Kalev
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|