30 lines
714 B
C#
30 lines
714 B
C#
|
///#################################################################
|
||
|
/// PROJECT : CASA - Common Authentication Services Adapter
|
||
|
/// FILE : Mozilla.cs
|
||
|
/// DESCRIPTION : GUI implementation of Mozilla store.
|
||
|
/// AUTHORS : CSL.Manojna
|
||
|
/// UPDATED ON : 24 Sept, 05
|
||
|
///#################################################################
|
||
|
|
||
|
namespace Novell.CASA.GUI {
|
||
|
|
||
|
using System;
|
||
|
using Gtk;
|
||
|
using Glade;
|
||
|
|
||
|
public class Mozilla : Store
|
||
|
{
|
||
|
public override void AggregateStore()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public override void ViewKeyValues()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
///##################################################################
|
||
|
/// END OF FILE
|
||
|
///##################################################################
|