source:
binary-improvements/7dtd-server-fixes/src/FileCache/AbstractCache.cs@
211
Last change on this file since 211 was 199, checked in by , 10 years ago | |
---|---|
File size: 225 bytes |
Rev | Line | |
---|---|---|
[199] | 1 | using System; |
2 | using System.Collections.Generic; | |
3 | ||
4 | namespace AllocsFixes.FileCache | |
5 | { | |
6 | public abstract class AbstractCache | |
7 | { | |
8 | ||
9 | public AbstractCache () | |
10 | { | |
11 | } | |
12 | ||
13 | public abstract byte[] GetFileContent (string filename); | |
14 | ||
15 | } | |
16 | } | |
17 |
Note:
See TracBrowser
for help on using the repository browser.