source:
Dev/LoggingTool/interfaces/ILoggerLogic.cs
@
516
Last change on this file since 516 was 5, checked in by jkraaijeveld, 14 years ago | |
---|---|
File size: 321 bytes |
Rev | Line | |
---|---|---|
[5] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | using System.Linq; | |
4 | using System.Text; | |
5 | using LoggingTool.models; | |
6 | ||
7 | namespace LoggingTool.interfaces | |
8 | { | |
9 | interface ILoggerLogic | |
10 | { | |
11 | List<LoggerMessage> formatModels(); | |
12 | ||
13 | void addInput(String input); | |
14 | ||
15 | void createModels(); | |
16 | } | |
17 | } |
Note: See TracBrowser
for help on using the repository browser.