mirror of
https://github.com/chylex/Code-Statistics.git
synced 2025-03-16 12:15:42 +01:00
Add dummy methods to Variables class
This commit is contained in:
parent
44593cd7e4
commit
2f335bc6a8
@ -1,5 +1,17 @@
|
||||
namespace CodeStatistics.Handling{
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace CodeStatistics.Handling{
|
||||
class Variables{
|
||||
// TODO
|
||||
public bool CheckFlag(string name){
|
||||
return false;
|
||||
}
|
||||
|
||||
public string GetVariable(string name){
|
||||
return "";
|
||||
}
|
||||
|
||||
public IEnumerable<Variables> GetArray(string name){
|
||||
yield break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user