37 lines
1.0 KiB
C#
37 lines
1.0 KiB
C#
|
///#################################################################
|
||
|
/// PROJECT : CASA - Common Authentication Services Adapter
|
||
|
/// FILE : Store.cs
|
||
|
/// DESCRIPTION : A parent class that abstracts the store classes.
|
||
|
/// AUTHORS : CSL.Manojna
|
||
|
/// UPDATED ON : 21 Sept, 05
|
||
|
///#################################################################
|
||
|
|
||
|
|
||
|
namespace Novell.CASA.GUI {
|
||
|
|
||
|
using System;
|
||
|
using Gtk;
|
||
|
using Glade;
|
||
|
|
||
|
public abstract class Store
|
||
|
{
|
||
|
|
||
|
///#######################################################################
|
||
|
/// <summary>
|
||
|
/// Clears the TreeStore and invokes ReadStore() to aggregate
|
||
|
/// respective stores.
|
||
|
/// </summary>
|
||
|
public abstract void AggregateStore();
|
||
|
|
||
|
|
||
|
///#######################################################################
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public abstract void ViewKeyValues();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
///##################################################################
|
||
|
/// END OF FILE
|
||
|
///##################################################################
|