Skip to content

Instantly share code, notes, and snippets.

@sfmishra
Created February 4, 2019 20:41
Show Gist options
  • Save sfmishra/5b47cdbfa6ccb7618a85636a64d02cb3 to your computer and use it in GitHub Desktop.
Save sfmishra/5b47cdbfa6ccb7618a85636a64d02cb3 to your computer and use it in GitHub Desktop.
/**
* Virtual Class with virtual methods
*
*/
public virtual class Marker {
public virtual void write() {
system.debug(' MARKER: writing some text');
}
public virtual integer price() {
return 10;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment