Some classes in core made public

main
Inga 🏳‍🌈 14 years ago
parent f5e7f1396d
commit 8c003eed2c
  1. 2
      Core/Config.cs
  2. 4
      Core/DataObject.cs
  3. 2
      Core/exceptions/CriticalException.cs
  4. 2
      Core/exceptions/FLocalException.cs
  5. 2
      Core/exceptions/ObjectDoesntHaveAnIdException.cs

@ -5,7 +5,7 @@ using System.Text;
namespace FLocal.Core {
class Config<T> where T : Config<T> {
public class Config<T> where T : Config<T> {
private static Config<T> _instance;

@ -6,7 +6,7 @@ using System.Diagnostics;
namespace FLocal.Core {
abstract class DataObject<TKey, T> : IDataObject<TKey, T>
abstract public class DataObject<TKey, T> : IDataObject<TKey, T>
where T : DataObject<TKey, T>, new()
where TKey : struct {
@ -48,7 +48,7 @@ namespace FLocal.Core {
this.AfterCreate();
}
public static Registry<TKey, T> registry {
private static Registry<TKey, T> registry {
get {
return Registry<TKey, T>.instance;
}

@ -5,7 +5,7 @@ using System.Text;
namespace FLocal.Core {
partial class CriticalException : FLocalException {
public partial class CriticalException : FLocalException {
public CriticalException(string Message) : base(Message) { }

@ -5,7 +5,7 @@ using System.Text;
namespace FLocal.Core {
partial class FLocalException : ApplicationException {
public partial class FLocalException : ApplicationException {
public readonly string FullStackTrace;

@ -5,7 +5,7 @@ using System.Text;
namespace FLocal.Core {
partial class ObjectDoesntHaveAnIdException : FLocalException {
public partial class ObjectDoesntHaveAnIdException : FLocalException {
public ObjectDoesntHaveAnIdException()
: base("Object doesn't have an id") {

Loading…
Cancel
Save